mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
19 lines
577 B
CMake
19 lines
577 B
CMake
# lz4 is the main compression method, cannot be disabled.
|
|
|
|
set (LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/lz4")
|
|
set (SRCS
|
|
"${LIBRARY_DIR}/lib/lz4.c"
|
|
"${LIBRARY_DIR}/lib/lz4hc.c"
|
|
"${LIBRARY_DIR}/lib/lz4frame.c"
|
|
"${LIBRARY_DIR}/lib/xxhash.c"
|
|
)
|
|
|
|
add_library (_lz4 ${SRCS})
|
|
add_library (ch_contrib::lz4 ALIAS _lz4)
|
|
|
|
target_compile_definitions (_lz4 PUBLIC LZ4_DISABLE_DEPRECATE_WARNINGS=1)
|
|
if (SANITIZE STREQUAL "undefined")
|
|
target_compile_options (_lz4 PRIVATE -fno-sanitize=undefined)
|
|
endif ()
|
|
target_include_directories(_lz4 PUBLIC "${LIBRARY_DIR}/lib")
|