mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
Fix build of keeper-bench
This commit is contained in:
parent
d55878d587
commit
5bba0ff698
@ -1,2 +1,6 @@
|
|||||||
clickhouse_add_executable (config-processor config-processor.cpp)
|
clickhouse_add_executable (config-processor config-processor.cpp)
|
||||||
target_link_libraries(config-processor PRIVATE dbms)
|
if (ENABLE_SSL)
|
||||||
|
target_link_libraries(config-processor PRIVATE dbms)
|
||||||
|
else ()
|
||||||
|
target_link_libraries(config-processor PRIVATE clickhouse_common_config_no_zookeeper_log)
|
||||||
|
endif ()
|
||||||
|
@ -4,4 +4,9 @@ if (NOT TARGET ch_contrib::rapidjson)
|
|||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
clickhouse_add_executable(keeper-bench Generator.cpp Runner.cpp Stats.cpp main.cpp)
|
clickhouse_add_executable(keeper-bench Generator.cpp Runner.cpp Stats.cpp main.cpp)
|
||||||
target_link_libraries(keeper-bench PRIVATE clickhouse_common_config_no_zookeeper_log ch_contrib::rapidjson)
|
if (ENABLE_SSL)
|
||||||
|
target_link_libraries(keeper-bench PRIVATE dbms)
|
||||||
|
else ()
|
||||||
|
target_link_libraries(keeper-bench PRIVATE clickhouse_common_config_no_zookeeper_log)
|
||||||
|
endif ()
|
||||||
|
target_link_libraries(keeper-bench PRIVATE ch_contrib::rapidjson)
|
||||||
|
Loading…
Reference in New Issue
Block a user