ClickHouse/libs/libcommon/cmake/version.cmake
alexey-milovidov 0e38fdcbf3 Remove stringstream performance on very short queries (#406)
* Improved performance on very short-response queries [#CLICKHOUSE-2].

* Improved performance on very short-response queries [#CLICKHOUSE-2].

* Improved performance on very short-response queries [#CLICKHOUSE-2].

* Renamed variable in test [#CLICKHOUSE-2].

* Benchmark: whitespace [#CLICKHOUSE-2].

* Manual version update [#CLICKHOUSE-2].
2017-01-27 01:30:11 +04:00

20 lines
562 B
CMake

#This strings autochanged from release_lib.sh :
set(VERSION_DESCRIBE v1.1.54134-testing)
set(VERSION_REVISION 54139)
#===end of autochange
set(VERSION_MAJOR 1)
set(VERSION_MINOR 1)
set(VERSION_PATCH ${VERSION_REVISION})
set(VERSION_EXTRA "")
set(VERSION_TWEAK "")
set(VERSION_STRING "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
if (VERSION_TWEAK)
set(VERSION_STRING "${VERSION_STRING}.${VERSION_TWEAK}")
endif()
if (VERSION_EXTRA)
set(VERSION_STRING "${VERSION_STRING}${VERSION_EXTRA}")
endif()
set(VERSION_FULL "${PROJECT_NAME} ${VERSION_STRING}")