ClickHouse/utils/keeper-bench/CMakeLists.txt

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

9 lines
360 B
CMake
Raw Normal View History

if (NOT TARGET ch_contrib::rapidjson)
message (${RECONFIGURE_MESSAGE_LEVEL} "Not building keeper-bench due to rapidjson is disabled")
return()
2023-05-06 17:06:44 +00:00
endif ()
clickhouse_add_executable(keeper-bench Generator.cpp Runner.cpp Stats.cpp main.cpp)
2023-07-20 13:28:37 +00:00
target_link_libraries(keeper-bench PRIVATE dbms)
2023-06-16 20:13:36 +00:00
target_link_libraries(keeper-bench PRIVATE ch_contrib::rapidjson)