ClickHouse/libs/libpocoext/CMakeLists.txt

15 lines
497 B
CMake
Raw Normal View History

add_library (pocoext ${SPLIT_SHARED}
src/LevelFilterChannel.cpp
src/ThreadNumber.cpp
2016-02-07 21:58:58 +00:00
include/Poco/Ext/LevelFilterChannel.h
include/Poco/Ext/ThreadNumber.h)
2016-02-07 21:58:58 +00:00
target_include_directories (pocoext PUBLIC include PRIVATE ${COMMON_INCLUDE_DIR})
2018-01-18 18:26:36 +00:00
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})