How to set the Apple deployment target when using manifest mode? #39966
Unanswered
MarkCallow
asked this question in
Q&A
Replies: 1 comment 3 replies
-
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my project I am getting more than 330 linker warnings like this
In my project's CMakeLists.txt I am setting the
CMAKE_OSX_DEPLOYMENT_TARGET
to "12.0". These warnings happened immediately I got vcpkg manifest mode set up for the project. I thought the problem was likely that I was settingCMAKE_OSX_DEPLOYMENT_TARGET
after theproject
command so I moved theproject
command to after the setting. It made no difference. After that I setVCPKG_OSX_DEPLOYMENT_TARGET
to the value ofCMAKE_OSX_DEPLOYMENT_TARGET
still beforeproject
. That too made no difference.How can I get vcpkg to compile dependencies for the deployment target chosen by my project?
My web searches so far have proved fruitless.
Beta Was this translation helpful? Give feedback.
All reactions