mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
82d74f5ab3
* Aloow redefine server config via command line: clickhouse-server -- --logger.level=information * style * fix * BaseDaemon: Simpler createDirectory * Allow --key value * Update BaseDaemon.cpp * Update BaseDaemon.cpp
15 lines
497 B
CMake
15 lines
497 B
CMake
add_library (pocoext ${SPLIT_SHARED}
|
|
src/LevelFilterChannel.cpp
|
|
src/ThreadNumber.cpp
|
|
|
|
include/Poco/Ext/LevelFilterChannel.h
|
|
include/Poco/Ext/ThreadNumber.h)
|
|
|
|
target_include_directories (pocoext PUBLIC include PRIVATE ${COMMON_INCLUDE_DIR})
|
|
|
|
if (NOT USE_INTERNAL_POCO_LIBRARY)
|
|
target_include_directories (pocoext BEFORE PUBLIC ${Poco_INCLUDE_DIRS})
|
|
endif ()
|
|
|
|
target_link_libraries(pocoext ${Poco_Util_LIBRARY} ${Poco_Net_LIBRARY} ${Poco_XML_LIBRARY} ${Poco_Foundation_LIBRARY})
|