mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
db13ef96d6
* Try to fix ../libs/libglibc-compatibility/glibc-compatibility.c:151: multiple definition of `explicit_bzero' contrib/ssl/crypto/libcrypto.a(explicit_bzero.c.o):../contrib/ssl/crypto/compat/explicit_bzero.c:16: first defined here * Fix ssl init * fix * noncopyable * clean
8 lines
415 B
CMake
8 lines
415 B
CMake
add_library (clickhouse-local-lib LocalServer.cpp)
|
|
target_link_libraries (clickhouse-local-lib clickhouse_common_io 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 ()
|