IAP GITLAB
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
corsika
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
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
Pranav Sampathkumar
corsika
Commits
bce8f4ca
Commit
bce8f4ca
authored
2 years ago
by
Remy Prechelt
Committed by
Maximilian Reininghaus
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Forward our requirement for C++17 onto Conan (needed for Boost).
parent
3afac351
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+7
-3
7 additions, 3 deletions
CMakeLists.txt
with
7 additions
and
3 deletions
CMakeLists.txt
+
7
−
3
View file @
bce8f4ca
...
...
@@ -115,9 +115,13 @@ include (conan) # self-provided in 'cmake' directory
#
# download and build all dependencies
message
(
STATUS
"Installing dependencies from Conan (this may take some time)..."
)
if
(
NOT APPLE
)
set
(
SETTINGS compiler.libcxx=libstdc++11
)
# not available on MacOS
endif
()
if
(
APPLE
)
# compiler.libcxx is not available on MacOS
set
(
SETTINGS compiler.cppstd=17
)
else
(
APPLE
)
set
(
SETTINGS compiler.libcxx=libstdc++11 compiler.cppstd=17
)
endif
(
APPLE
)
#
conan_cmake_run
(
CONANFILE conanfile.txt
BASIC_SETUP CMAKE_TARGETS
BUILD missing
...
...
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