-
Notifications
You must be signed in to change notification settings - Fork 6.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[vcpkg_fixup_cmake_targets] Fix up OSX system development path #16706
Conversation
@davidebeatrici Can you please test this PR? Thanks. |
Sorry for the delay. The issue was fixed for set_target_properties(unofficial::angle::angle_gpu_info_util PROPERTIES
INTERFACE_LINK_LIBRARIES "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/IOKit.framework;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/CoreFoundation.framework;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/CoreGraphics.framework;\$<LINK_ONLY:unofficial::angle::angle_common>"
) |
@davidebeatrici Should be good now. |
Need wait for #16837 merge first. |
I confirm it's fixed. |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
paraview:x64-osx:
|
Fix exported osx framework config
…nto dev/jack/16259
Should fix this first. |
@strega-nil-ms Which rollup will contains this PR's changes? |
@JackBoosY oops, it's gotta be marked or I'll miss; marking now. |
Closed for rollup #19469. |
[vcpkg_fixup_cmake_targets] Fix up OSX system development path
* [rollup:2021-08-09] PR #16706 (@JackBoosY) [vcpkg_fixup_cmake_targets] Fix up OSX system development path * [rollup:2021-08-09] PR #19238 (@strega-nil) [scripts-audit] vcpkg_download_distfile * [rollup:2021-08-09] PR #19239 (@strega-nil) [scripts-audit] vcpkg_find_fortran * [rollup:2021-08-09] PR #19338 (@strega-nil) [tinyfiledialogs] Fix for good * [rollup:2021-08-09] PR #19348 (@strega-nil) [scripts-audit] vcpkg_fixup_pkgconfig * fix ports.cmake with newer vcpkg_download_distfile * fix vcpkg create * move vcpkg_common_definitions down so that it's not incorrect * fix vcpkg_internal_get_cmake_vars Co-authored-by: nicole mazzuca <[email protected]> Co-authored-by: Jack·Boos·Yu <[email protected]> Co-authored-by: Billy Robert O'Neal III <[email protected]>
In OSX, some cmake configuration files contain the absolute path of the system development kits, such as:
And they should be:
Fix this.
Fixes #16259.