2015-01-15 03:18:44 +00:00
|
|
|
set(GIT_VERSION_FILE "${SOURCE_DIR}/git-version.h")
|
2015-01-15 01:58:11 +00:00
|
|
|
set(GIT_VERSION "unknown")
|
|
|
|
set(GIT_VERSION_UPDATE "1")
|
|
|
|
|
|
|
|
find_package(Git)
|
|
|
|
if(GIT_FOUND)
|
|
|
|
execute_process(COMMAND ${GIT_EXECUTABLE} describe --always
|
|
|
|
WORKING_DIRECTORY ${SOURCE_DIR}
|
|
|
|
RESULT_VARIABLE exit_code
|
|
|
|
OUTPUT_VARIABLE GIT_VERSION)
|
|
|
|
if(NOT ${exit_code} EQUAL 0)
|
|
|
|
message(WARNING "git describe failed, unable to include version.")
|
|
|
|
endif()
|
|
|
|
string(STRIP ${GIT_VERSION} GIT_VERSION)
|
|
|
|
else()
|
|
|
|
message(WARNING "git not found, unable to include version.")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(EXISTS ${GIT_VERSION_FILE})
|
|
|
|
# Don't update if marked not to update.
|
|
|
|
file(STRINGS ${GIT_VERSION_FILE} match
|
|
|
|
REGEX "RPCS3_GIT_VERSION_NO_UPDATE 1")
|
|
|
|
if(NOT ${match} EQUAL "")
|
|
|
|
set(GIT_VERSION_UPDATE "0")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Don't update if it's already the same.
|
|
|
|
file(STRINGS ${GIT_VERSION_FILE} match
|
|
|
|
REGEX "${GIT_VERSION}")
|
|
|
|
if(NOT ${match} EQUAL "")
|
|
|
|
set(GIT_VERSION_UPDATE "0")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(code_string "// This is a generated file.\n\n"
|
2015-01-15 03:00:43 +00:00
|
|
|
"#define RPCS3_GIT_VERSION \"${GIT_VERSION}\"\n\n"
|
2015-01-15 01:58:11 +00:00
|
|
|
"// If you don't want this file to update/recompile, change to 1.\n"
|
|
|
|
"#define RPCS3_GIT_VERSION_NO_UPDATE 0\n")
|
|
|
|
|
|
|
|
if ("${GIT_VERSION_UPDATE}" EQUAL "1")
|
|
|
|
file(WRITE ${GIT_VERSION_FILE} ${code_string})
|
2015-01-15 03:18:44 +00:00
|
|
|
endif()
|