mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
347579ce46
* contrib: cctz as submodule. update cctz. * pbuilder: add ubuntu bionic, devel * Cmake: mark system includes as SYSTEM * Build fixes * fix * Fix package without compiler * Better * fix * fix * fix * Build fix * fix * fix * fix * Cmake: Add SYSTEM to includes for external libs
22 lines
745 B
CMake
22 lines
745 B
CMake
add_library (pocoext ${SPLIT_SHARED}
|
|
src/LevelFilterChannel.cpp
|
|
src/ThreadNumber.cpp
|
|
src/SessionPoolHelpers.cpp
|
|
|
|
include/Poco/Ext/LevelFilterChannel.h
|
|
include/Poco/Ext/ThreadNumber.h
|
|
include/Poco/Ext/SessionPoolHelpers.h)
|
|
|
|
if (Poco_Data_FOUND)
|
|
target_include_directories (pocoext SYSTEM PRIVATE ${Poco_Data_INCLUDE_DIRS})
|
|
target_link_libraries(pocoext ${Poco_Data_LIBRARY})
|
|
endif()
|
|
|
|
target_include_directories (pocoext PUBLIC include PRIVATE ${COMMON_INCLUDE_DIR})
|
|
|
|
if (NOT USE_INTERNAL_POCO_LIBRARY)
|
|
target_include_directories (pocoext SYSTEM BEFORE PUBLIC ${Poco_INCLUDE_DIRS})
|
|
endif ()
|
|
|
|
target_link_libraries(pocoext ${Poco_Util_LIBRARY} ${Poco_Net_LIBRARY} ${Poco_XML_LIBRARY} ${Poco_Foundation_LIBRARY})
|