mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-06 00:31:10 +01:00
6c9078d673
Poco can be built with ENABLE_UTIL=ON and ENABLE_XML=OFF, but use of Poco::Util requires Poco::XML
10 lines
225 B
CMake
10 lines
225 B
CMake
include(CMakeFindDependencyMacro)
|
|
find_dependency(PocoFoundation)
|
|
if(ENABLE_XML)
|
|
find_dependency(PocoXML)
|
|
endif()
|
|
if(ENABLE_JSON)
|
|
find_dependency(PocoJSON)
|
|
endif()
|
|
include("${CMAKE_CURRENT_LIST_DIR}/PocoUtilTargets.cmake")
|