mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
11 lines
390 B
CMake
11 lines
390 B
CMake
|
|
include_directories (BEFORE ${ClickHouse_SOURCE_DIR}/contrib/libzstd/include)
|
|
|
|
add_executable (clickhouse-compressor main.cpp)
|
|
target_link_libraries (clickhouse-compressor dbms ${Boost_PROGRAM_OPTIONS_LIBRARY})
|
|
|
|
install (TARGETS clickhouse-compressor RUNTIME DESTINATION bin COMPONENT clickhouse-compressor)
|
|
|
|
add_executable (zstd_test zstd_test.cpp)
|
|
target_link_libraries (zstd_test zstd)
|