mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 02:39:41 +01:00
Style: Lowercase commands in version.cmake
We made the lowercase names be a consistent style in the main CMake file but we missed this one. [skip ci]
This commit is contained in:
parent
d4425ed762
commit
e3876feb3b
1 changed files with 5 additions and 5 deletions
|
@ -5,19 +5,19 @@ find_package(Git)
|
|||
|
||||
if(GIT_FOUND)
|
||||
# Get interim commit and date of commit
|
||||
EXECUTE_PROCESS(
|
||||
execute_process(
|
||||
COMMAND "${GIT_EXECUTABLE}" log -1 --format=%h
|
||||
OUTPUT_VARIABLE INTERIM_COMMIT
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
|
||||
EXECUTE_PROCESS(
|
||||
execute_process(
|
||||
COMMAND "${GIT_EXECUTABLE}" log -1 --format=%cd --date=short
|
||||
OUTPUT_VARIABLE COMMIT_DATE
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
|
||||
EXECUTE_PROCESS(
|
||||
execute_process(
|
||||
COMMAND "${GIT_EXECUTABLE}" branch --show-current
|
||||
OUTPUT_VARIABLE BRANCH_NAME
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
|
@ -36,7 +36,7 @@ if("${BRANCH_NAME}" STREQUAL "")
|
|||
set(BRANCH_NAME "(branch?)")
|
||||
endif()
|
||||
|
||||
MESSAGE(STATUS "This is interim commit ${INTERIM_COMMIT} (committed ${COMMIT_DATE}) on branch ${BRANCH_NAME}")
|
||||
message(STATUS "This is interim commit ${INTERIM_COMMIT} (committed ${COMMIT_DATE}) on branch ${BRANCH_NAME}")
|
||||
|
||||
# Take the template file and replace the macros with what we have
|
||||
CONFIGURE_FILE(${INPUT_FILE} ${OUTPUT_FILE})
|
||||
configure_file(${INPUT_FILE} ${OUTPUT_FILE})
|
||||
|
|
Loading…
Reference in a new issue