mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-09 10:05:25 +02:00
13 lines
418 B
CMake
13 lines
418 B
CMake
![]() |
execute_process(COMMAND git rev-parse HEAD
|
||
|
OUTPUT_VARIABLE VERSION_PATCH)
|
||
|
|
||
|
# remove leading and trailing spaces
|
||
|
string(STRIP "${VERSION_PATCH}" VERSION_PATCH)
|
||
|
|
||
|
message("Checking time stamp ...")
|
||
|
if(EXISTS ${TIME_STAMP_FILE})
|
||
|
file (STRINGS ${TIME_STAMP_FILE} VERSION_IN_FILE)
|
||
|
if(NOT "${VERSION_IN_FILE}" STREQUAL "${VERSION_PATCH}")
|
||
|
file (REMOVE "${TIME_STAMP_FILE}")
|
||
|
endif()
|
||
|
endif()
|