mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
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")
|