CodeCommitsIssuesPull requestsActionsInsightsSecurity
050db07e3d9d82e822b8fd0c17cf924480ed5e3f

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

utils/compressor/CMakeLists.txt

17lines · modecode

1find_package (Threads)
2
3add_executable (zstd_test zstd_test.cpp)
4if(ZSTD_LIBRARY)
5 target_link_libraries(zstd_test PRIVATE ${ZSTD_LIBRARY})
6endif()
7target_link_libraries (zstd_test PRIVATE common Threads::Threads)
8
9add_executable (mutator mutator.cpp)
10target_link_libraries(mutator PRIVATE clickhouse_common_io)
11
12add_executable (decompress_perf decompress_perf.cpp)
13target_link_libraries(decompress_perf PRIVATE dbms ${LZ4_LIBRARY})
14
15if (NOT USE_INTERNAL_ZSTD_LIBRARY AND ZSTD_INCLUDE_DIR)
16 target_include_directories (zstd_test BEFORE PRIVATE ${ZSTD_INCLUDE_DIR})
17endif ()