mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
0e91c47066
* Allow build with external double-conversion lz4 zstd re2 zookeeper * fix * fix * freebsd fixes * spaces * fix * fix * fix * wip * move * fix
18 lines
623 B
CMake
18 lines
623 B
CMake
option (USE_INTERNAL_ZSTD_LIBRARY "Set to FALSE to use system zstd library instead of bundled" ${NOT_UNBUNDLED})
|
|
|
|
if (NOT USE_INTERNAL_ZSTD_LIBRARY)
|
|
find_library (ZSTD_LIBRARY zstd)
|
|
find_path (ZSTD_INCLUDE_DIR NAMES zstd.h PATHS ${ZSTD_INCLUDE_PATHS})
|
|
endif ()
|
|
|
|
if (ZSTD_LIBRARY AND ZSTD_INCLUDE_DIR)
|
|
include_directories (${ZSTD_INCLUDE_DIR})
|
|
else ()
|
|
set (USE_INTERNAL_ZSTD_LIBRARY 1)
|
|
set (ZSTD_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/libzstd/include/zstd")
|
|
include_directories (BEFORE ${ZSTD_INCLUDE_DIR})
|
|
set (ZSTD_LIBRARY zstd)
|
|
endif ()
|
|
|
|
message (STATUS "Using zstd: ${ZSTD_INCLUDE_DIR} : ${ZSTD_LIBRARY}")
|