mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
10 lines
370 B
CMake
10 lines
370 B
CMake
find_package (Threads)
|
|
|
|
add_executable (clickhouse-compressor main.cpp)
|
|
target_link_libraries (clickhouse-compressor clickhouse-compressor-lib)
|
|
|
|
install (TARGETS clickhouse-compressor RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT clickhouse-compressor)
|
|
|
|
add_executable (zstd_test zstd_test.cpp)
|
|
target_link_libraries (zstd_test ${ZSTD_LIBRARY} Threads::Threads)
|