mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
fbe7df73a2
CONTRIB-254
8 lines
394 B
CMake
8 lines
394 B
CMake
add_library (clickhouse-local-lib LocalServer.cpp)
|
|
target_link_libraries (clickhouse-local-lib clickhouse-server-lib clickhouse_functions clickhouse_aggregate_functions clickhouse_table_functions ${Boost_PROGRAM_OPTIONS_LIBRARY})
|
|
|
|
if (CLICKHOUSE_SPLIT_BINARY)
|
|
add_executable (clickhouse-local clickhouse-local.cpp)
|
|
target_link_libraries (clickhouse-local clickhouse-local-lib)
|
|
endif ()
|