ClickHouse/src/Daemon/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
400 B
CMake
Raw Normal View History

2022-09-27 07:29:18 +00:00
configure_file(GitHash.cpp.in GitHash.generated.cpp)
add_library (daemon
BaseDaemon.cpp
GraphiteWriter.cpp
2020-06-02 18:50:55 +00:00
SentryWriter.cpp
2022-09-27 07:29:18 +00:00
GitHash.generated.cpp
2020-06-02 18:50:55 +00:00
)
2016-02-07 21:58:58 +00:00
2022-10-13 19:31:31 +00:00
target_link_libraries (daemon PUBLIC loggers common PRIVATE clickhouse_parsers clickhouse_common_io clickhouse_common_config)
2020-06-02 19:25:34 +00:00
2022-01-17 22:08:35 +00:00
if (TARGET ch_contrib::sentry)
2022-10-03 12:17:42 +00:00
target_link_libraries (daemon PRIVATE ch_contrib::sentry dbms)
2020-06-15 23:51:33 +00:00
endif ()