mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +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
27 lines
934 B
CMake
27 lines
934 B
CMake
add_library (daemon ${LINK_MODE}
|
|
src/BaseDaemon.cpp
|
|
src/GraphiteWriter.cpp
|
|
src/ExtendedLogChannel.cpp
|
|
src/OwnPatternFormatter.cpp
|
|
src/OwnFormattingChannel.cpp
|
|
src/OwnSplitChannel.cpp
|
|
|
|
include/daemon/BaseDaemon.h
|
|
include/daemon/GraphiteWriter.h
|
|
include/daemon/ExtendedLogChannel.h
|
|
include/daemon/OwnPatternFormatter.h
|
|
include/daemon/OwnFormattingChannel.h
|
|
include/daemon/OwnSplitChannel.h
|
|
)
|
|
|
|
if (USE_UNWIND)
|
|
target_compile_definitions (daemon PRIVATE USE_UNWIND=1)
|
|
target_include_directories (daemon BEFORE PRIVATE ${UNWIND_INCLUDE_DIR})
|
|
target_link_libraries (daemon ${UNWIND_LIBRARY})
|
|
endif ()
|
|
|
|
target_include_directories (daemon PUBLIC include)
|
|
target_include_directories (daemon PRIVATE ${ClickHouse_SOURCE_DIR}/libs/libpocoext/include)
|
|
|
|
target_link_libraries (daemon clickhouse_common_io clickhouse_common_config ${Poco_Util_LIBRARY} ${EXECINFO_LIBRARY} ${ELF_LIBRARY})
|