Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenVolumeMesh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
7
Issues
7
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenVolumeMesh
OpenVolumeMesh
Commits
6e975f10
Commit
6e975f10
authored
Oct 04, 2019
by
Martin Heistermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: fix wrong variable name
parent
bd6b72c6
Pipeline
#12319
passed with stage
in 7 minutes and 38 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
CMakeLists.txt
CMakeLists.txt
+2
-2
No files found.
CMakeLists.txt
View file @
6e975f10
...
...
@@ -41,9 +41,9 @@ if (OVM_STANDALONE_BUILD)
endif
()
set
(
OVM_CXX_STANDARD 11 CACHE STRING
"C++ standard version to use"
)
set_property
(
CACHE OVM_CXX_STANDARD PROPERTY STRINGS 11 14 17 20
)
set
(
CMAKE_CXX_VERSION
${
OVM_CXX_STANDARD
}
)
set
(
CMAKE_CXX_EXTENSIONS OFF
)
set
(
CMAKE_CXX_STANDARD
${
OVM_CXX_STANDARD
}
)
set
(
CMAKE_CXX_STANDARD_REQUIRED YES
)
set
(
CMAKE_CXX_EXTENSIONS OFF
)
else
()
# OVM_TARGET_PREFIX is prepended to targets with generic names,
# i.e., "doc", "unittests"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment