mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[CMAKE] Add a NO_REACTOS_BUILDNO option
This allows to not generate buildno.h and version.h after each commit and trigger the relinking of the complete module list
This commit is contained in:
parent
7ae3d530db
commit
5d4ece342c
1 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,10 @@
|
|||
string(TIMESTAMP KERNEL_VERSION_BUILD %Y%m%d UTC)
|
||||
option(NO_REACTOS_BUILDNO "If true, disables the generation of buildno.h and version.h for each configure" OFF)
|
||||
|
||||
if (NOT NO_REACTOS_BUILDNO)
|
||||
string(TIMESTAMP KERNEL_VERSION_BUILD %Y%m%d UTC)
|
||||
else()
|
||||
set(KERNEL_VERSION_BUILD "custom")
|
||||
endif()
|
||||
|
||||
set(KERNEL_VERSION_MAJOR "0")
|
||||
set(KERNEL_VERSION_MINOR "4")
|
||||
|
@ -24,7 +30,7 @@ endif()
|
|||
set(COMMIT_HASH "unknown-hash")
|
||||
set(REVISION "unknown-revision")
|
||||
|
||||
if(EXISTS "${REACTOS_SOURCE_DIR}/.git")
|
||||
if((EXISTS "${REACTOS_SOURCE_DIR}/.git") AND (NOT NO_REACTOS_BUILDNO))
|
||||
find_package(Git)
|
||||
if(GIT_FOUND)
|
||||
execute_process(
|
||||
|
|
Loading…
Reference in a new issue