mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
14 lines
519 B
CMake
14 lines
519 B
CMake
option (USE_INTERNAL_SPARSEHASH_LIBRARY "Set to FALSE to use system sparsehash library instead of bundled" ${NOT_UNBUNDLED})
|
|
|
|
if (NOT USE_INTERNAL_SPARSEHASH_LIBRARY)
|
|
find_path (SPARSEHASH_INCLUDE_DIR NAMES sparsehash/sparse_hash_map PATHS ${SPARSEHASH_INCLUDE_PATHS})
|
|
endif ()
|
|
|
|
if (SPARSEHASH_INCLUDE_DIR)
|
|
else ()
|
|
set (USE_INTERNAL_SPARSEHASH_LIBRARY 1)
|
|
set (SPARSEHASH_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/sparsehash-c11")
|
|
endif ()
|
|
|
|
message (STATUS "Using sparsehash: ${SPARSEHASH_INCLUDE_DIR}")
|