mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-20 05:05:38 +00:00
31 lines
887 B
CMake
31 lines
887 B
CMake
# This strings autochanged from release_lib.sh:
|
|
set(VERSION_REVISION 54425)
|
|
set(VERSION_MAJOR 19)
|
|
set(VERSION_MINOR 14)
|
|
set(VERSION_PATCH 6)
|
|
set(VERSION_GITHASH c6464f2813c7d5cb939af11759d05705ba0f15ee)
|
|
set(VERSION_DESCRIBE v19.14.6.1-prestable)
|
|
set(VERSION_STRING 19.14.6.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()
|