mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 10:31:57 +00:00
15 lines
400 B
CMake
15 lines
400 B
CMake
configure_file(GitHash.cpp.in GitHash.generated.cpp)
|
|
|
|
add_library (daemon
|
|
BaseDaemon.cpp
|
|
GraphiteWriter.cpp
|
|
SentryWriter.cpp
|
|
GitHash.generated.cpp
|
|
)
|
|
|
|
target_link_libraries (daemon PUBLIC loggers common PRIVATE clickhouse_parsers clickhouse_common_io clickhouse_common_config)
|
|
|
|
if (TARGET ch_contrib::sentry)
|
|
target_link_libraries (daemon PRIVATE ch_contrib::sentry dbms)
|
|
endif ()
|