ClickHouse/programs/keeper-bench/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
448 B
CMake
Raw Normal View History

2024-12-09 12:49:47 +00:00
if (NOT TARGET ch_contrib::rapidjson OR NOT TARGET ch_contrib::nuraft)
message (WARNING "Not building keeper-bench due to rapidjson or nuraft is disabled")
2024-11-26 14:57:42 +00:00
return()
endif ()
set (CLICKHOUSE_KEEPER_BENCH_SOURCES
Generator.cpp
Runner.cpp
Stats.cpp
KeeperBench.cpp
)
set (CLICKHOUSE_KEEPER_BENCH_LINK
PRIVATE
dbms
clickhouse_functions
ch_contrib::rapidjson
)
clickhouse_program_add(keeper-bench)