ClickHouse/utils/compressor/CMakeLists.txt

11 lines
390 B
CMake
Raw Normal View History

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})
2016-02-07 21:58:58 +00:00
install (TARGETS clickhouse-compressor RUNTIME DESTINATION bin COMPONENT clickhouse-compressor)
2016-02-07 21:58:58 +00:00
add_executable (zstd_test zstd_test.cpp)
target_link_libraries (zstd_test zstd)