mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
9 lines
330 B
CMake
9 lines
330 B
CMake
|
|
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})
|