mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
31 lines
882 B
CMake
31 lines
882 B
CMake
# This strings autochanged from release_lib.sh:
|
|
set(VERSION_REVISION 54419)
|
|
set(VERSION_MAJOR 19)
|
|
set(VERSION_MINOR 7)
|
|
set(VERSION_PATCH 1)
|
|
set(VERSION_GITHASH b0b369b30f04a5026d1da5c7d3fd5998d6de1fe4)
|
|
set(VERSION_DESCRIBE v19.7.1.1-testing)
|
|
set(VERSION_STRING 19.7.1.1)
|
|
# end of autochange
|
|
|
|
set(VERSION_EXTRA "" CACHE STRING "")
|
|
set(VERSION_TWEAK "" CACHE STRING "")
|
|
|
|
if (VERSION_TWEAK)
|
|
string(CONCAT VERSION_STRING ${VERSION_STRING} "." ${VERSION_TWEAK})
|
|
endif ()
|
|
|
|
if (VERSION_EXTRA)
|
|
string(CONCAT VERSION_STRING ${VERSION_STRING} "." ${VERSION_EXTRA})
|
|
endif ()
|
|
|
|
set (VERSION_NAME "${PROJECT_NAME}")
|
|
set (VERSION_FULL "${VERSION_NAME} ${VERSION_STRING}")
|
|
set (VERSION_SO "${VERSION_STRING}")
|
|
|
|
math (EXPR VERSION_INTEGER "${VERSION_PATCH} + ${VERSION_MINOR}*1000 + ${VERSION_MAJOR}*1000000")
|
|
|
|
if(YANDEX_OFFICIAL_BUILD)
|
|
set(VERSION_OFFICIAL " (official build)")
|
|
endif()
|