mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[CMAKE]
WIN32: get build date without overcomplicated string parsing. svn path=/branches/cmake-bringup/; revision=50473
This commit is contained in:
parent
9fb04fdf80
commit
256c5c72c0
1 changed files with 1 additions and 3 deletions
|
@ -1,8 +1,6 @@
|
|||
macro(today RESULT)
|
||||
if (WIN32)
|
||||
#execute_process(COMMAND "cmd" "/c" "date" "/T" OUTPUT_VARIABLE ${RESULT})
|
||||
#string(REGEX REPLACE "(..)/(..)/(....).*" "\\3\\2\\1" ${RESULT} ${${RESULT}})
|
||||
execute_process(COMMAND "${REACTOS_SOURCE_DIR}/tools/getdate.cmd" OUTPUT_VARIABLE ${RESULT})
|
||||
execute_process(COMMAND "${REACTOS_SOURCE_DIR}/tools/getdate.exe" OUTPUT_VARIABLE ${RESULT})
|
||||
string(STRIP ${${RESULT}} ${RESULT})
|
||||
elseif(UNIX)
|
||||
execute_process(COMMAND "date" "+%Y%m%d" OUTPUT_VARIABLE ${${RESULT}})
|
||||
|
|
Loading…
Reference in a new issue