mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
21 lines
792 B
CMake
21 lines
792 B
CMake
option (USE_INTERNAL_ZSTD_LIBRARY "Set to FALSE to use system zstd library instead of bundled" ${NOT_UNBUNDLED})
|
|
|
|
if (USE_INTERNAL_ZSTD_LIBRARY AND NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/zstd/lib/zstd.h")
|
|
message (WARNING "submodule contrib/zstd is missing. to fix try run: \n git submodule update --init --recursive")
|
|
set (USE_INTERNAL_ZSTD_LIBRARY 0)
|
|
endif ()
|
|
|
|
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)
|
|
else ()
|
|
set (USE_INTERNAL_ZSTD_LIBRARY 1)
|
|
set (ZSTD_LIBRARY zstd)
|
|
set (ZSTD_INCLUDE_DIR ${ClickHouse_SOURCE_DIR}/contrib/zstd/lib)
|
|
endif ()
|
|
|
|
message (STATUS "Using zstd: ${ZSTD_INCLUDE_DIR} : ${ZSTD_LIBRARY}")
|