Skip to content

Commit

Permalink
fix(build): Install cmake files with resolved ENABLE_JSON and ENABLE_…
Browse files Browse the repository at this point in the history
…XML (#4227)
  • Loading branch information
tyler92 authored and aleks-f committed Nov 23, 2023
1 parent a994486 commit 348e215
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Util/cmake/PocoUtilConfig.cmake
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
include(CMakeFindDependencyMacro)
find_dependency(PocoFoundation)
if(ENABLE_XML)
if(@ENABLE_XML@)
find_dependency(PocoXML)
endif()
if(ENABLE_JSON)
if(@ENABLE_JSON@)
find_dependency(PocoJSON)
endif()
include("${CMAKE_CURRENT_LIST_DIR}/PocoUtilTargets.cmake")

0 comments on commit 348e215

Please sign in to comment.