mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
9 lines
299 B
CMake
9 lines
299 B
CMake
option (USE_INTERNAL_POCO_LIBRARY "Use internal Poco library" ON)
|
|
|
|
if (NOT USE_INTERNAL_POCO_LIBRARY)
|
|
find_path (ROOT_DIR NAMES Foundation/include/Poco/Poco.h include/Poco/Poco.h)
|
|
if (NOT ROOT_DIR)
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't find system poco")
|
|
endif()
|
|
endif ()
|