231a60a611
Signed-off-by: Onuralp SEZER <thunderbirdtr@fedoraproject.org>
19 lines
940 B
CMake
19 lines
940 B
CMake
set(DIR_OF_GITVERSION_TOOL "${CMAKE_CURRENT_LIST_DIR}" CACHE INTERNAL "DIR_OF_GITVERSION_TOOL")
|
|
|
|
function (get_git_version OUTPUT_VARIABLE)
|
|
EXECUTE_PROCESS(COMMAND python3 ${DIR_OF_GITVERSION_TOOL}/getversion.py
|
|
WORKING_DIRECTORY ${DIR_OF_GITVERSION_TOOL}
|
|
OUTPUT_VARIABLE VERSION
|
|
ERROR_VARIABLE error
|
|
RESULT_VARIABLE result)
|
|
STRING(STRIP "${VERSION}" STRIPPED_VERSION)
|
|
SET(${OUTPUT_VARIABLE} "${STRIPPED_VERSION}" CACHE INTERNAL "${OUTPUT_VARIABLE}")
|
|
MESSAGE(STATUS "Building version ${${OUTPUT_VARIABLE}}")
|
|
IF(NOT ${result} EQUAL 0)
|
|
MESSAGE(FATAL_ERROR "Error running versioneer. Return code is: ${result}, error message is: ${error}")
|
|
ENDIF()
|
|
IF("${STRIPPED_VERSION}" STREQUAL "0+unknown")
|
|
MESSAGE(FATAL_ERROR "Unable to find git version information. Please build directly from a git repository (i.e. after git clone).")
|
|
ENDIF()
|
|
endfunction(get_git_version)
|