Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
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
Nheko Reborn
nheko
Commits
da60aa88
Verified
Commit
da60aa88
authored
2 years ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Set macos deployment target in cmake list
relates to #1401
parent
7d8ccd4c
No related branches found
No related tags found
No related merge requests found
Pipeline
#4572
passed
2 years ago
Stage: build
Stage: sign
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+1
-0
1 addition, 0 deletions
CMakeLists.txt
toolchain.cmake
+1
-1
1 addition, 1 deletion
toolchain.cmake
with
2 additions
and
1 deletion
CMakeLists.txt
+
1
−
0
View file @
da60aa88
...
...
@@ -21,6 +21,7 @@ set(
set
(
CMAKE_CXX_STANDARD 20 CACHE STRING
"C++ standard"
)
set
(
CMAKE_CXX_STANDARD_REQUIRED ON CACHE BOOL
"Require C++ standard to be supported"
)
set
(
CMAKE_POSITION_INDEPENDENT_CODE ON CACHE BOOL
"compile as PIC by default"
)
set
(
CMAKE_OSX_DEPLOYMENT_TARGET
"10.15"
CACHE STRING
"macos deployment target"
)
option
(
HUNTER_ENABLED
"Enable Hunter package manager"
OFF
)
include
(
"cmake/HunterGate.cmake"
)
...
...
This diff is collapsed.
Click to expand it.
toolchain.cmake
+
1
−
1
View file @
da60aa88
set
(
CMAKE_CXX_STANDARD 20
)
set
(
CMAKE_CXX_STANDARD_REQUIRED ON
)
set
(
CMAKE_POSITION_INDEPENDENT_CODE ON
)
set
(
CMAKE_OSX_DEPLOYMENT_TARGET 10.15
)
\ No newline at end of file
set
(
CMAKE_OSX_DEPLOYMENT_TARGET
"10.15"
CACHE STRING
"macos deployment target"
)
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