ClickHouse/utils/compressor/CMakeLists.txt

9 lines
342 B
CMake
Raw Normal View History

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 ${CMAKE_INSTALL_BINDIR} COMPONENT clickhouse-compressor)
2016-02-07 21:58:58 +00:00
add_executable (zstd_test zstd_test.cpp)
target_link_libraries (zstd_test ${ZSTD_LIBRARY})