Remove unneeded code from CMakeLists

This commit is contained in:
Alexey Milovidov 2021-04-24 22:26:00 +03:00
parent 280c0666a5
commit f0580b3f72
4 changed files with 0 additions and 8 deletions

View File

@ -1,4 +1,2 @@
add_executable (config-processor config-processor.cpp)
target_link_libraries(config-processor PRIVATE clickhouse_common_config)
INSTALL(TARGETS config-processor RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT config-processor)

View File

@ -1,6 +1,2 @@
add_executable(corrector_utf8 corrector_utf8.cpp)
# Link the executable to the library.
target_link_libraries(corrector_utf8 PRIVATE clickhouse_common_io)
install(TARGETS corrector_utf8 RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT corrector_utf8)

View File

@ -1,3 +1,2 @@
add_executable(clickhouse-zookeeper-cli zookeeper-cli.cpp)
target_link_libraries(clickhouse-zookeeper-cli PRIVATE clickhouse_common_zookeeper)
INSTALL(TARGETS clickhouse-zookeeper-cli RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT clickhouse-utils)

View File

@ -1,3 +1,2 @@
add_executable(zk-test main.cpp)
target_link_libraries(zk-test PRIVATE clickhouse_common_zookeeper)
INSTALL(TARGETS zk-test RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT clickhouse-utils)