mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
24 lines
716 B
CMake
24 lines
716 B
CMake
include(${CMAKE_SOURCE_DIR}/cmake/autogenerated_versions.txt)
|
|
|
|
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}")
|
|
set (VERSION_STRING_SHORT "${VERSION_MAJOR}.${VERSION_MINOR}")
|
|
|
|
math (EXPR VERSION_INTEGER "${VERSION_PATCH} + ${VERSION_MINOR}*1000 + ${VERSION_MAJOR}*1000000")
|
|
|
|
if(YANDEX_OFFICIAL_BUILD)
|
|
set(VERSION_OFFICIAL " (official build)")
|
|
endif()
|