mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
ac178bde1f
* Cmake: link ltdl with pocoodbc static only. rename ARM -> ARCH_ARM * Fix lib find order * Allow define non-contrib cityhash farmhash metrohash * Fix message * Cmake: fixes * clean * Update CMakeLists.txt
15 lines
570 B
CMake
15 lines
570 B
CMake
option (USE_INTERNAL_SPARCEHASH_LIBRARY "Set to FALSE to use system sparsehash library instead of bundled" ${NOT_UNBUNDLED})
|
|
|
|
if (NOT USE_INTERNAL_SPARCEHASH_LIBRARY)
|
|
find_path (SPARCEHASH_INCLUDE_DIR NAMES sparsehash/sparse_hash_map PATHS ${SPARCEHASH_INCLUDE_PATHS})
|
|
endif ()
|
|
|
|
if (SPARCEHASH_INCLUDE_DIR)
|
|
include_directories (${SPARCEHASH_INCLUDE_DIR})
|
|
else ()
|
|
set (USE_INTERNAL_SPARCEHASH_LIBRARY 1)
|
|
set (SPARCEHASH_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/libsparsehash")
|
|
endif ()
|
|
|
|
message (STATUS "Using sparsehash: ${SPARCEHASH_INCLUDE_DIR}")
|