Prevent CMake choking on empty vars

This commit is contained in:
Riccardo Spagni 2014-09-15 23:04:58 +02:00
parent 070ff889d2
commit de442fb9ad
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -40,6 +40,8 @@ if(RET)
else()
message(STATUS "You are currently on commit ${COMMIT}")
# Give our output variable a default value, because CMake likes to choke on empty variables
set(TAGGEDCOMMITOUT "a")
# Get all the tags
execute_process(COMMAND "${GIT}" show-ref --tags -d --abbrev RESULT_VARIABLE RET OUTPUT_VARIABLE TAGGEDCOMMITOUT OUTPUT_STRIP_TRAILING_WHITESPACE)