Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Dmitri Naumov
ogs
Commits
86440457
Commit
86440457
authored
4 years ago
by
Lars Bilke
Browse files
Options
Downloads
Patches
Plain Diff
[CMake] Fixed Swmm include order.
parent
68341799
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+6
-8
6 additions, 8 deletions
CMakeLists.txt
with
6 additions
and
8 deletions
CMakeLists.txt
+
6
−
8
View file @
86440457
...
@@ -40,6 +40,12 @@ if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.16)
...
@@ -40,6 +40,12 @@ if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.16)
endif
()
endif
()
option
(
OGS_USE_PYTHON
"Interface with Python"
ON
)
option
(
OGS_USE_PYTHON
"Interface with Python"
ON
)
option
(
OGS_USE_POETRY
"Enables automatic Python virtual environment handling with poetry."
ON
)
option
(
OGS_USE_POETRY
"Enables automatic Python virtual environment handling with poetry."
ON
)
if
(
WIN32
)
option
(
OGS_BUILD_SWMM
"Should the SWMM interface be built?"
ON
)
endif
()
if
(
NOT WIN32 AND OGS_BUILD_SWMM
)
message
(
FATAL_ERROR
"OGS_BUILD_SWMM requires Windows!"
)
endif
()
# Third-party libraries, names come from Conan package names
# Third-party libraries, names come from Conan package names
set
(
OGS_LIBS
set
(
OGS_LIBS
...
@@ -96,14 +102,6 @@ if((CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_GNUCC) AND GPROF_PATH)
...
@@ -96,14 +102,6 @@ if((CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_GNUCC) AND GPROF_PATH)
endif
()
# GCC AND GPROF_PATH
endif
()
# GCC AND GPROF_PATH
option
(
OGS_BUILD_GUI
"Should the Data Explorer be built?"
OFF
)
option
(
OGS_BUILD_GUI
"Should the Data Explorer be built?"
OFF
)
if
(
WIN32
)
option
(
OGS_BUILD_SWMM
"Should the SWMM interface be built?"
ON
)
endif
()
if
(
NOT WIN32 AND OGS_BUILD_SWMM
)
message
(
FATAL_ERROR
"OGS_BUILD_SWMM requires Windows!"
)
endif
()
option
(
OGS_NO_EXTERNAL_LIBS
"Builds OGS without any external dependencies."
OFF
)
option
(
OGS_NO_EXTERNAL_LIBS
"Builds OGS without any external dependencies."
OFF
)
option
(
OGS_INSITU
"Builds OGS with insitu visualization capabilities."
OFF
)
option
(
OGS_INSITU
"Builds OGS with insitu visualization capabilities."
OFF
)
option
(
OGS_USE_LIS
"Use Lis"
OFF
)
option
(
OGS_USE_LIS
"Use Lis"
OFF
)
...
...
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