mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
1d40c2c871
* try fix 1 * Better deps * fix * fix * fix * Update CMakeLists.txt * Update CMakeLists.txt * fix * fix * fix * disable old * Update find_odbc.cmake
21 lines
864 B
CMake
21 lines
864 B
CMake
find_package (Threads)
|
|
|
|
add_executable (util-clickhouse-compressor main.cpp)
|
|
target_link_libraries (util-clickhouse-compressor PRIVATE clickhouse-compressor-lib)
|
|
set_target_properties(util-clickhouse-compressor PROPERTIES OUTPUT_NAME "clickhouse-compressor")
|
|
|
|
#install (TARGETS util-clickhouse-compressor RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT clickhouse-compressor)
|
|
|
|
add_executable (zstd_test zstd_test.cpp)
|
|
target_link_libraries (zstd_test PRIVATE ${ZSTD_LIBRARY} common Threads::Threads)
|
|
|
|
add_executable (mutator mutator.cpp)
|
|
target_link_libraries(mutator PRIVATE clickhouse_common_io)
|
|
|
|
add_executable (decompress_perf decompress_perf.cpp)
|
|
target_link_libraries(decompress_perf PRIVATE clickhouse_common_io ${LZ4_LIBRARY})
|
|
|
|
if (NOT USE_INTERNAL_ZSTD_LIBRARY)
|
|
target_include_directories (zstd_test BEFORE PRIVATE ${ZSTD_INCLUDE_DIR})
|
|
endif ()
|