Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GeoModel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GeoModelDev
GeoModel
Commits
2d0396e5
Commit
2d0396e5
authored
4 years ago
by
Riccardo Maria Bianchi
Browse files
Options
Downloads
Plain Diff
Merge branch 'fix-json-builtin' into 'master'
Fix builtin JSON See merge request
!25
parents
bd9ffe01
3f0949b4
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!25
Fix builtin JSON
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
FullSimLight/CMakeLists.txt
+6
-2
6 additions, 2 deletions
FullSimLight/CMakeLists.txt
GeoModelVisualization/CMakeLists.txt
+5
-3
5 additions, 3 deletions
GeoModelVisualization/CMakeLists.txt
with
11 additions
and
5 deletions
FullSimLight/CMakeLists.txt
+
6
−
2
View file @
2d0396e5
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
GeoModelVisualization/CMakeLists.txt
+
5
−
3
View file @
2d0396e5
...
@@ -19,9 +19,11 @@ if(CMAKE_SOURCE_DIR STREQUAL PROJECT_SOURCE_DIR)
...
@@ -19,9 +19,11 @@ if(CMAKE_SOURCE_DIR STREQUAL PROJECT_SOURCE_DIR)
include
(
configure_cpp_options
)
include
(
configure_cpp_options
)
set
(
CMAKE_FIND_FRAMEWORK
"LAST"
CACHE STRING
set
(
CMAKE_FIND_FRAMEWORK
"LAST"
CACHE STRING
"Framework finding behaviour on macOS"
)
"Framework finding behaviour on macOS"
)
# Set up how the project handle some of its dependenices. Either by picking them
if
(
NOT TARGET JSONExt
)
# up from the environment, or building them itself.
# Set up how the project handle some of its dependenices. Either by picking them
include
(
SetupJSON
)
# up from the environment, or building them itself.
include
(
SetupJSON
)
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment