mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
by allowing build systems to use a constant date instead of the current one see https://reproducible-builds.org/ for why this is good and https://reproducible-builds.org/specs/source-date-epoch/ for the definition of this variable This call is designed to work with GNU date. If BSD support is a concern, it can be added.
21 lines
796 B
CMake
21 lines
796 B
CMake
# This script returns the current date in ISO format
|
|
#
|
|
# YYYY-MM-DD
|
|
#
|
|
MACRO (TODAY RESULT)
|
|
IF (WIN32)
|
|
EXECUTE_PROCESS(COMMAND "cmd" " /C date +%Y-%m-%d" OUTPUT_VARIABLE ${RESULT})
|
|
string(REGEX REPLACE "(..)/(..)/..(..).*" "\\1/\\2/\\3" ${RESULT} ${${RESULT}})
|
|
ELSEIF(UNIX)
|
|
if (DEFINED ENV{SOURCE_DATE_EPOCH})
|
|
EXECUTE_PROCESS(COMMAND "date" "-u" "-d" "@$ENV{SOURCE_DATE_EPOCH}" "+%Y-%m-%d" OUTPUT_VARIABLE ${RESULT})
|
|
else ()
|
|
EXECUTE_PROCESS(COMMAND "date" "+%Y-%m-%d" OUTPUT_VARIABLE ${RESULT})
|
|
endif ()
|
|
string(REGEX REPLACE "(..)/(..)/..(..).*" "\\1/\\2/\\3" ${RESULT} ${${RESULT}})
|
|
ELSE (WIN32)
|
|
MESSAGE(SEND_ERROR "date not implemented")
|
|
SET(${RESULT} 000000)
|
|
ENDIF (WIN32)
|
|
ENDMACRO (TODAY)
|