mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
10 lines
229 B
CMake
10 lines
229 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")
|