ClickHouse/cmake/version.cmake

24 lines
720 B
CMake
Raw Normal View History

2020-05-28 13:46:56 +00:00
include(${CMAKE_SOURCE_DIR}/cmake/autogenerated_versions.txt)
2018-07-17 11:15:14 +00:00
set(VERSION_EXTRA "" CACHE STRING "")
set(VERSION_TWEAK "" CACHE STRING "")
if (VERSION_TWEAK)
2018-07-17 11:15:14 +00:00
string(CONCAT VERSION_STRING ${VERSION_STRING} "." ${VERSION_TWEAK})
endif ()
if (VERSION_EXTRA)
2018-07-17 11:15:14 +00:00
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}")
2020-05-30 08:02:13 +00:00
set (VERSION_STRING_SHORT "${VERSION_MAJOR}.${VERSION_MINOR}")
math (EXPR VERSION_INTEGER "${VERSION_PATCH} + ${VERSION_MINOR}*1000 + ${VERSION_MAJOR}*1000000")
2022-03-28 13:53:22 +00:00
if(CLICKHOUSE_OFFICIAL_BUILD)
set(VERSION_OFFICIAL " (official build)")
endif()