forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'mixxxdj/2.5' into 2.5-rel
- Loading branch information
Showing
4 changed files
with
58 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,15 +23,15 @@ jobs: | |
vcpkg_path: /Users/runner/mixxx-vcpkg | ||
vcpkg_buildtrees-root: /Users/runner/mixxx-vcpkg/buildtrees | ||
vcpkg_bootstrap: ./bootstrap-vcpkg.sh | ||
vcpkg_triplet: x64-osx-min1015-release | ||
vcpkg_host_triplet: x64-osx-min1015-release | ||
vcpkg_triplet: x64-osx-min1100-release | ||
vcpkg_host_triplet: x64-osx-min110-release | ||
check_disk_space: df -h | ||
- os: macos-11 | ||
vcpkg_path: /Users/runner/mixxx-vcpkg | ||
vcpkg_buildtrees-root: /Users/runner/mixxx-vcpkg/buildtrees | ||
vcpkg_bootstrap: ./bootstrap-vcpkg.sh | ||
vcpkg_triplet: arm64-osx-min1100-release | ||
vcpkg_host_triplet: x64-osx-min1015-release | ||
vcpkg_host_triplet: x64-osx-min1100-release | ||
check_disk_space: df -h | ||
env: | ||
VCPKG_DEFAULT_TRIPLET: ${{ matrix.vcpkg_triplet }} | ||
|
@@ -75,6 +75,12 @@ jobs: | |
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
working-directory: ${{ matrix.vcpkg_path }} | ||
|
||
# update cmake to 2.29.2 to work around https://github.com/microsoft/vcpkg/issues/37968 | ||
- name: "[macOS] Set up cmake" | ||
uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: "3.29.2" | ||
|
||
- name: Bootstrap vcpkg | ||
run: ${{ matrix.vcpkg_bootstrap }} | ||
working-directory: ${{ matrix.vcpkg_path }} | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
|
||
# Mixxx loads fdk-aac dynamically at runtime. This allows the user to replace | ||
# the version of fdk-aac we ship which has the patent-encumbered HE-AAC | ||
#removed with another build that supports HE-AAC. | ||
if(${PORT} MATCHES "fdk-aac") | ||
set(VCPKG_LIBRARY_LINKAGE dynamic) | ||
else() | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
endif() | ||
|
||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_OSX_ARCHITECTURES x86_64) | ||
|
||
# Minimum supported macOS version as target platform for Qt6.5 is 11 | ||
# https://doc.qt.io/qt-6.5/supported-platforms.html#desktop-platforms | ||
set(VCPKG_OSX_DEPLOYMENT_TARGET 11.0) | ||
|
||
# All Apple computer supported by macOS 11, have processors with AVX instruction set | ||
set(VCPKG_C_FLAGS "${VCPKG_C_FLAGS} -mavx") | ||
set(VCPKG_CXX_FLAGS "${VCPKG_CXX_FLAGS} -mavx") | ||
|
||
set(VCPKG_BUILD_TYPE release) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
|
||
# Mixxx loads fdk-aac dynamically at runtime. This allows the user to replace | ||
# the version of fdk-aac we ship which has the patent-encumbered HE-AAC | ||
#removed with another build that supports HE-AAC. | ||
if(${PORT} MATCHES "fdk-aac") | ||
set(VCPKG_LIBRARY_LINKAGE dynamic) | ||
else() | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
endif() | ||
|
||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_OSX_ARCHITECTURES x86_64) | ||
|
||
# Minimum supported macOS version as target platform for Qt6.5 is 11 | ||
# https://doc.qt.io/qt-6.5/supported-platforms.html#desktop-platforms | ||
set(VCPKG_OSX_DEPLOYMENT_TARGET 11.0) | ||
|
||
# All Apple computer supported by macOS 11, have processors with AVX instruction set | ||
set(VCPKG_C_FLAGS "${VCPKG_C_FLAGS} -mavx") | ||
set(VCPKG_CXX_FLAGS "${VCPKG_CXX_FLAGS} -mavx") |