mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 19:42:00 +00:00
1cbceb6611
Drop leftovers of libexecinfo
19 lines
506 B
CMake
19 lines
506 B
CMake
configure_file(GitHash.cpp.in GitHash.generated.cpp)
|
|
|
|
add_library (daemon
|
|
BaseDaemon.cpp
|
|
GraphiteWriter.cpp
|
|
SentryWriter.cpp
|
|
GitHash.generated.cpp
|
|
)
|
|
|
|
if (OS_DARWIN AND NOT USE_STATIC_LIBRARIES)
|
|
target_link_libraries (daemon PUBLIC -Wl,-undefined,dynamic_lookup)
|
|
endif()
|
|
|
|
target_link_libraries (daemon PUBLIC loggers common PRIVATE clickhouse_common_io clickhouse_common_config)
|
|
|
|
if (TARGET ch_contrib::sentry)
|
|
target_link_libraries (daemon PRIVATE ch_contrib::sentry dbms)
|
|
endif ()
|