Skip to content
Snippets Groups Projects

Fix builtin JSON

Merged Riccardo Maria Bianchi requested to merge fix-json-builtin into master
2 files
+ 11
5
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -19,8 +19,12 @@ if(CMAKE_SOURCE_DIR STREQUAL PROJECT_SOURCE_DIR)
@@ -19,8 +19,12 @@ if(CMAKE_SOURCE_DIR STREQUAL PROJECT_SOURCE_DIR)
"Framework finding behaviour on macOS" )
"Framework finding behaviour on macOS" )
# Set up how the project handle some of its dependenices. Either by picking them
# Set up how the project handle some of its dependenices. Either by picking them
# up from the environment, or building them itself.
# up from the environment, or building them itself.
include( SetupJSON )
if( NOT TARGET JSONExt )
include( SetupXercesC )
include( SetupJSON )
 
endif()
 
if( NOT TARGET XercesCBuiltIn )
 
include( SetupXercesC )
 
endif()
# Find the base GeoModel packages, which must be installed on the target system already
# Find the base GeoModel packages, which must be installed on the target system already
find_package( GeoModelCore REQUIRED 4.0.0 ) #TODO: the version should be se in the root folder
find_package( GeoModelCore REQUIRED 4.0.0 ) #TODO: the version should be se in the root folder
find_package( GeoModelIO REQUIRED 4.0.0 ) #TODO: the version should be se in the root folder
find_package( GeoModelIO REQUIRED 4.0.0 ) #TODO: the version should be se in the root folder
Loading