mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
Make CMake version dirty state available to code
Set `CMake_VERSION_IS_DIRTY` to 1 or 0 depending on whether the CMake source tree is considered dirty or not.
This commit is contained in:
@@ -3,6 +3,7 @@ include(${CMake_SOURCE_DIR}/Source/CMakeVersion.cmake)
|
||||
|
||||
# Releases define a small patch level.
|
||||
if("${CMake_VERSION_PATCH}" VERSION_LESS 20000000)
|
||||
set(CMake_VERSION_IS_DIRTY 0)
|
||||
set(CMake_VERSION_IS_RELEASE 1)
|
||||
set(CMake_VERSION_SOURCE "")
|
||||
else()
|
||||
@@ -22,3 +23,6 @@ endif()
|
||||
if(CMake_VERSION_SUFFIX)
|
||||
set(CMake_VERSION ${CMake_VERSION}-${CMake_VERSION_SUFFIX})
|
||||
endif()
|
||||
if(CMake_VERSION_IS_DIRTY)
|
||||
set(CMake_VERSION ${CMake_VERSION}-dirty)
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user