2018-09-14 19:48:51 +00:00
|
|
|
add_library (clickhouse-local-lib ${LINK_MODE} LocalServer.cpp)
|
2019-02-15 11:46:07 +00:00
|
|
|
target_link_libraries (clickhouse-local-lib PRIVATE clickhouse_dictionaries clickhouse_common_io clickhouse-server-lib clickhouse_functions clickhouse_aggregate_functions clickhouse_table_functions ${Boost_PROGRAM_OPTIONS_LIBRARY})
|
2018-06-05 20:09:51 +00:00
|
|
|
|
|
|
|
if (CLICKHOUSE_SPLIT_BINARY)
|
|
|
|
add_executable (clickhouse-local clickhouse-local.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (clickhouse-local PRIVATE clickhouse-local-lib)
|
2019-01-28 16:36:39 +00:00
|
|
|
install (TARGETS clickhouse-local ${CLICKHOUSE_ALL_TARGETS} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT clickhouse)
|
2018-06-05 20:09:51 +00:00
|
|
|
endif ()
|