mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
14 lines
338 B
CMake
14 lines
338 B
CMake
|
SET(LIBRARY_DIR ${ClickHouse_SOURCE_DIR}/contrib/lz4/lib)
|
||
|
|
||
|
add_library (lz4
|
||
|
${LIBRARY_DIR}/lz4.c
|
||
|
${LIBRARY_DIR}/lz4hc.c
|
||
|
|
||
|
${LIBRARY_DIR}/lz4.h
|
||
|
${LIBRARY_DIR}/lz4hc.h
|
||
|
${LIBRARY_DIR}/lz4opt.h)
|
||
|
|
||
|
target_compile_definitions(lz4 PUBLIC LZ4_DISABLE_DEPRECATE_WARNINGS=1)
|
||
|
|
||
|
target_include_directories(lz4 PUBLIC ${LIBRARY_DIR})
|