mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 04:13:32 +00:00
damage to your time machine warp core. UNEXPECTED_NEW_YEAR_TIMESLIP If this is the first time you have seen this Stop error screen, restart your time machine. If this screen appears again, follow these steps: Check to make sure you wish the ReactOS Community a 🎊 🍾 🥳 *:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:* 🎆 ⚛️ ☢️ █ █ █▀█ █▀█ █▀█ █ █ ██████╗ ██████╗ ██████╗ ███████╗ ██╗ █▀█ █▀█ █▀▀ █▀▀ ▀█▀ ╚════██╗██╔═████╗╚════██╗██╔════╝ ██║ ▀ ▀ ▀ ▀ ▀ ▀ ▀ █████╔╝██║██╔██║ █████╔╝╚█████╗ ██║ █▄ █ █▀▀ █ █ █ █ █ █▀▀ █▀█ █▀█ ██╔═══╝ ████╔╝██║██╔═══╝ ╚═══██╗ ╚═╝ █▀██ █▀▀ █ █ █ ▀█▀ █▀▀ █▀█ ██▀ ███████╗╚██████╔╝███████╗██████╔╝ ██╗ ▀ ▀ ▀▀▀ ▀▀▀ ▀ ▀▀▀ ▀ ▀ ▀ ▀ ╚══════╝ ╚═════╝ ╚══════╝╚═════╝ ╚═╝ 🎆 ⚛️ ☢️ *:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:* 🎊 🍾 🥳 Also, ensure you use the latest nightly ReactOS version and run it attached to a debugger. If problems continue, Keep Calm And Carry On Developing. Test your code more thoroughly, use a sane compiler and debugger, or ask any questions on ReactOS' official Mattermost channel. Technical information: *** STOP: 0x42000042 (0x67747770,0x000007E9,0x00000001,0x00000001) *** jira.reactos.org - Address chat.reactos.org Base at reactos.org *** github.com/reactos - Address git.reactos.org Base at reactos.org
62 lines
2.2 KiB
CMake
62 lines
2.2 KiB
CMake
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")
|
|
set(KERNEL_VERSION_PATCH_LEVEL "16")
|
|
set(COPYRIGHT_YEAR "2025")
|
|
|
|
# KERNEL_VERSION_BUILD_TYPE is "dev" for Git builds
|
|
# or "RC1", "RC2", "" for releases.
|
|
set(KERNEL_VERSION_BUILD_TYPE "dev")
|
|
|
|
set(KERNEL_VERSION "${KERNEL_VERSION_MAJOR}.${KERNEL_VERSION_MINOR}.${KERNEL_VERSION_PATCH_LEVEL}-${WINARCH}")
|
|
if(NOT KERNEL_VERSION_BUILD_TYPE STREQUAL "")
|
|
set(KERNEL_VERSION "${KERNEL_VERSION}-${KERNEL_VERSION_BUILD_TYPE}")
|
|
endif()
|
|
|
|
math(EXPR REACTOS_DLL_VERSION_MAJOR "${KERNEL_VERSION_MAJOR}+42")
|
|
set(DLL_VERSION_STR "${REACTOS_DLL_VERSION_MAJOR}.${KERNEL_VERSION_MINOR}.${KERNEL_VERSION_PATCH_LEVEL}")
|
|
if(NOT KERNEL_VERSION_BUILD_TYPE STREQUAL "")
|
|
set(DLL_VERSION_STR "${DLL_VERSION_STR}-${KERNEL_VERSION_BUILD_TYPE}")
|
|
endif()
|
|
|
|
# Get Git revision through "git describe"
|
|
set(COMMIT_HASH "unknown-hash")
|
|
set(REVISION "unknown-revision")
|
|
|
|
if((EXISTS "${REACTOS_SOURCE_DIR}/.git") AND (NOT NO_REACTOS_BUILDNO))
|
|
find_package(Git)
|
|
if(GIT_FOUND)
|
|
execute_process(
|
|
COMMAND "${GIT_EXECUTABLE}" rev-parse HEAD
|
|
WORKING_DIRECTORY ${REACTOS_SOURCE_DIR}
|
|
OUTPUT_VARIABLE GIT_COMMIT_HASH
|
|
RESULT_VARIABLE GIT_CALL_RESULT
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
if(GIT_CALL_RESULT EQUAL 0)
|
|
set(COMMIT_HASH "${GIT_COMMIT_HASH}")
|
|
endif()
|
|
|
|
execute_process(
|
|
COMMAND "${GIT_EXECUTABLE}" describe --abbrev=7 --long --always
|
|
WORKING_DIRECTORY ${REACTOS_SOURCE_DIR}
|
|
OUTPUT_VARIABLE GIT_DESCRIBE_REVISION
|
|
RESULT_VARIABLE GIT_CALL_RESULT
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
if(GIT_CALL_RESULT EQUAL 0)
|
|
set(REVISION "${GIT_DESCRIBE_REVISION}")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
configure_file(sdk/include/reactos/version.h.cmake ${REACTOS_BINARY_DIR}/sdk/include/reactos/version.h)
|
|
configure_file(sdk/include/reactos/buildno.h.cmake ${REACTOS_BINARY_DIR}/sdk/include/reactos/buildno.h)
|