forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Fix exported osx framework config #2
Merged
JackBoosY
merged 9 commits into
JackBoosY:dev/jack/16259
from
dg0yt:osx-framework-config
May 31, 2021
Merged
Fix exported osx framework config #2
JackBoosY
merged 9 commits into
JackBoosY:dev/jack/16259
from
dg0yt:osx-framework-config
May 31, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thanks! I will take a look! |
JackBoosY
reviewed
May 19, 2021
JackBoosY
added a commit
that referenced
this pull request
May 25, 2021
…icrosoft#16392) * [woff2] fix static linking and alternate toolchain First, this change teaches the woff2 CMake configuration to understand the vcpkg's custom unofficial-brotli pkg-config configuration in order to support static linking. This fixes a build failure on x64-linux or other triplets when VCPKG_LIBRARY_LINKAGE is set to static. Secondly, the CANONICAL_PREFIXES option for the woff2 CMake configuration has been changed to be on by default, otherwise custom triplets or toolchains using alternate compilers such as Clang/LLVM or other versions of GCC will fail. Leaving CANONICAL_PREFIXES set to OFF causes -no-canonical-prefixes to be passed to the compiler, which prevents symlinked compiler toolchains from working correctly. If a user does actually need non-canonical prefixes, chances are they will have a custom triplet or toolchain file that passes in -no-canonical-prefixes as a CFLAG for every port, and so setting it to ON here is a better default for vcpkg. * [woff2] update versions * [woff2] update control file * [woff2] update versions * [woff2] update ci.baseline.txt * Update ports/woff2/0001-unofficial-brotli.patch Co-authored-by: Jack·Boos·Yu <[email protected]> * [woff2] regenerate 0001-unofficial-brotli.patch file * [woff2] update versions * [woff2] regenerate 0001-unofficial-brotli.patch file attempt #2 * [woff2] update versions Co-authored-by: Jack·Boos·Yu <[email protected]>
Thanks! |
JackBoosY
added a commit
that referenced
this pull request
Jan 4, 2022
* [cpp-ipc] Update 1.0.1 * [cpp-ipc] Update version and ci.baseline * [cpp-ipc] Remove cpp-ipc from ci.baseline.txt * [teemo] Update to v2.3 * [teemo] Run `vcpkg x-add-version --all` * [teemo] Update vcpkg.json * [teemo] Run vcpkg `x-add-version teemo --overwrite-version` * Remove excess teemo.json * [teemo] Update to v2.4 * [teemo] run ./vcpkg x-add-version --all * [teemo] Update to v2.5 * [teemo] Update versions/t-/teemo.json * [teemo] Fix string replace error. * [teemo] Update port version. * [teemo] Use port-version instead of appending #2. * [teemo] Run 'vcpkg x-add-version --all' * [teemo] Add maintainers. * Update versions/t-/teemo.json * Update versions/t-/teemo.json * Update ports/teemo/vcpkg.json * [teemo] Format vcpkg.json Co-authored-by: Jonliu1993 <[email protected]> Co-authored-by: Jack·Boos·Yu <[email protected]>
JackBoosY
pushed a commit
that referenced
this pull request
Aug 5, 2022
* [OpenCV] update to v3.4.18 and v4.6.0 enable python2 in vcpkg-get-python-package * fix references * remove python2 from testing * restore python2 tests only on windows&x64 * fix references * [OpenCV2] add jasper patch * fix references * update handling multiple versions * add usage files * [dbow] fix build * [dbow] fix version * fix references * remove ipp from vcpkg-ci-opencv for opencv3 * [OpenCV2] fix CRT linking with static libs * fix references * [dbow3] add support clause now that is CI tested [cctag] enable opencv4, fix build on osx * fix references * [OpenCV2] fix patch * fix references * [libharu] bump version * fix references * [rtabmap] fix for opencv 4.6 * [rtabmap] fix manifest * fix references * remove llvm dependency to ease CI load * version * overwrite version * fixes for mingw * add mingw patch * fix references * [OpenCV2] fix generated config on win32 * fix references * update version * update version * overwrite baseline * cleanup after merge * fix references * [openmvs] trying to diagnose the problem - DO NOT MERGE * fix references * restore port version * fix references * Revert "[openmvs] trying to diagnose the problem - DO NOT MERGE" This reverts commit 8bfd0ff. * Revert "fix references" This reverts commit 0e915f6. * skip opencv2 and opencv3 * remove again opencv2/3 from vcpkg-ci-opencv * apply fixes from review * fix references * wrong checksum (tested on windows) * Github-actions fixes (#2) * Update opencv4.json * fix github-actions issues * formating vcpkg.json * update git-trees * fix rtabmap license * fix references * fix also dbow3 license * fix references * [cctag] remove unnecessary patch section * fix references Co-authored-by: Frank <[email protected]> Co-authored-by: FrankXie <[email protected]> Co-authored-by: Matthieu Penant <[email protected]> Co-authored-by: Matthieu Penant <[email protected]>
JackBoosY
pushed a commit
that referenced
this pull request
Aug 8, 2023
* fix gperf in cpp17 mode * update version * update version #2 * remove unused header patch file * update version 3 --------- Co-authored-by: rdh <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
For microsoft#16706.
Using CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES, curl's CURLTarget.cmake changes as follows:
This PR uses
CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
, other than in microsoft#17790 (frameworks in curl pc files) where I usedCMAKE_SYSTEM_FRAMEWORK_PATH
. On my MBA, the values are as follows:In the end, it might make sense to use the same variable, and possibly move the changes from 17790 to
vcpkg_fixup_pkgconfig
.