mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
47ad338cb2
* Get rid of lib_name.cmake * Refactor Boost and HyperScan libraries * Refactor lz4 * Fix build with xxHash
21 lines
527 B
CMake
21 lines
527 B
CMake
set (CLICKHOUSE_LOCAL_SOURCES LocalServer.cpp)
|
|
|
|
set (CLICKHOUSE_LOCAL_LINK
|
|
PRIVATE
|
|
boost::program_options
|
|
clickhouse_aggregate_functions
|
|
clickhouse_common_config
|
|
clickhouse_common_io
|
|
clickhouse_dictionaries
|
|
clickhouse_functions
|
|
clickhouse_parsers
|
|
clickhouse_storages_system
|
|
clickhouse_table_functions
|
|
)
|
|
|
|
clickhouse_program_add(local)
|
|
|
|
if(NOT CLICKHOUSE_ONE_SHARED)
|
|
target_link_libraries(clickhouse-local-lib PRIVATE clickhouse-server-lib)
|
|
endif()
|