forked from webosbrew/hyperion-webos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerateVersionHeader.cmake
More file actions
23 lines (21 loc) · 886 Bytes
/
GenerateVersionHeader.cmake
File metadata and controls
23 lines (21 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if(GIT_EXECUTABLE)
get_filename_component(SRC_DIR ${SRC} DIRECTORY)
# Generate a git-describe version string from Git repository tags
execute_process(
COMMAND ${GIT_EXECUTABLE} describe --all --long --dirty
WORKING_DIRECTORY ${SRC_DIR}
OUTPUT_VARIABLE GIT_DESCRIBE_VERSION
RESULT_VARIABLE GIT_DESCRIBE_ERROR_CODE
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if(NOT GIT_DESCRIBE_ERROR_CODE)
set(HYPERION_WEBOS_VERSION ${GIT_DESCRIBE_VERSION})
endif()
endif()
# Final fallback: Just use a bogus version string that is semantically older
# than anything else and spit out a warning to the developer.
if(NOT DEFINED HYPERION_WEBOS_VERSION)
set(HYPERION_WEBOS_VERSION v0.0.0-unknown)
message(WARNING "Failed to determine HYPERION_WEBOS_VERSION from Git tags. Using default version \"${HYPERION_WEBOS_VERSION}\".")
endif()
configure_file(${SRC} ${DST} @ONLY)