mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
10 lines
535 B
CMake
10 lines
535 B
CMake
set(CLICKHOUSE_LOCAL_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/LocalServer.cpp)
|
|
set(CLICKHOUSE_LOCAL_LINK PRIVATE clickhouse_storages_system clickhouse_dictionaries clickhouse_common_config clickhouse_common_io clickhouse_functions clickhouse_aggregate_functions clickhouse_parsers clickhouse_table_functions ${Boost_PROGRAM_OPTIONS_LIBRARY})
|
|
#set(CLICKHOUSE_LOCAL_INCLUDE SYSTEM PRIVATE ...)
|
|
|
|
clickhouse_program_add(local)
|
|
|
|
if(NOT CLICKHOUSE_ONE_SHARED)
|
|
target_link_libraries(clickhouse-local-lib PRIVATE clickhouse-server-lib)
|
|
endif()
|