mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
12 lines
394 B
CMake
12 lines
394 B
CMake
add_library (daemon
|
|
BaseDaemon.cpp
|
|
GraphiteWriter.cpp
|
|
SentryWriter.cpp)
|
|
|
|
target_include_directories (daemon PUBLIC ..)
|
|
target_link_libraries (daemon PUBLIC loggers PRIVATE clickhouse_common_io clickhouse_common_config common ${EXECINFO_LIBRARIES})
|
|
|
|
if (USE_SENTRY)
|
|
target_link_libraries (daemon PRIVATE curl)
|
|
target_link_libraries (daemon PRIVATE ${SENTRY_LIBRARY})
|
|
endif () |