Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GeoModelCore
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
GeoModelDev
GeoModelCore
Commits
8fb8ffb6
Commit
8fb8ffb6
authored
5 years ago
by
Riccardo Maria Bianchi
Browse files
Options
Downloads
Patches
Plain Diff
New library version, now 3.2.0.
parent
5378b45e
No related branches found
No related tags found
1 merge request
!9
Fix friend classes persistification and concurrent access to add() method
Pipeline
#1619131
passed
5 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+11
-9
11 additions, 9 deletions
CMakeLists.txt
with
11 additions
and
9 deletions
CMakeLists.txt
+
11
−
9
View file @
8fb8ffb6
...
...
@@ -2,24 +2,26 @@
# Set up the project.
cmake_minimum_required
(
VERSION 3.1
)
project
(
"GeoModelCore"
VERSION 3.
1.2
LANGUAGES CXX
)
project
(
"GeoModelCore"
VERSION 3.
2.0
LANGUAGES CXX
)
# Set default build options.
set
(
CMAKE_BUILD_TYPE
"Release"
CACHE STRING
"CMake build mode to use"
)
set
(
CMAKE_CXX_STANDARD 17 CACHE STRING
"C++ standard used for the build"
)
set
(
CMAKE_CXX_EXTENSIONS FALSE CACHE BOOL
"(Dis)allow using GNU extensions"
)
# ---------------------------
# Make the module directory visible to CMake.
list
(
APPEND CMAKE_MODULE_PATH
${
CMAKE_SOURCE_DIR
}
/cmake
)
# Print Build Info on screen
include
(
PrintBuildInfo
)
# Set build and C++ default options
include
(
configure_cpp_options
)
# Use the GNU install directory names.
include
(
GNUInstallDirs
)
# Set up how the project would use Eigen.
include
(
SetupEigen3
)
# Use the GNU install directory names.
include
(
GNUInstallDirs
)
# Print Build Info on screen
include
(
PrintBuildInfo
)
# ---------------------------
# Set up the build of the two libraries of the project.
add_subdirectory
(
GeoGenericFunctions
)
...
...
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