-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Update VCPKG #16095
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
Draft
acolombier
wants to merge
11
commits into
mixxxdj:main
Choose a base branch
from
acolombier:chore/update-vcpkg
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+73
−73
Draft
Update VCPKG #16095
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
04aa7f6
chore: update VCPKG to use the latest TagLib version
acolombier 5c4a838
chore: update CMake version to meet minimum Qt reqs
acolombier 04dbfb2
chore: add maybe_unused to support nodiscard added in Qt 6.10
acolombier d6d95e7
chore: change FFmpeg CMake module to match Qt's casing
acolombier 11826e5
fixup! chore: update VCPKG to use the latest TagLib version
acolombier 81ef545
fixup! chore: update CMake version to meet minimum Qt reqs
acolombier a6cceed
fixup! chore: add maybe_unused to support nodiscard added in Qt 6.10
acolombier 4880a76
fixup! chore: update VCPKG to use the latest TagLib version
acolombier 45d51c7
fixup! fixup! chore: add maybe_unused to support nodiscard added in Q…
acolombier b11bc1d
fixup! fixup! chore: update VCPKG to use the latest TagLib version
acolombier 3fa5fc7
fixup! chore: update CMake version to meet minimum Qt reqs
acolombier File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -234,20 +234,15 @@ jobs: | |
| # Ubuntu 24.04 should use the CMake version from the repos. | ||
| if: runner.os == 'macOS' | ||
| with: | ||
| # This should always match the minimum required version in | ||
| # our CMakeLists.txt | ||
| cmake-version: "3.21.x" | ||
| cmake-version: "3.22.x" | ||
|
|
||
| - name: "[Windows] Set up cmake" | ||
| uses: jwlawson/actions-setup-cmake@v2.1 | ||
| # Ubuntu 24.04 should use the CMake version from the repos. | ||
| # On windows-11-arm this action installs the x64 version which has unwanted side effects | ||
| if: matrix.os == 'windows-2022' | ||
| with: | ||
| # This is a workaround for a SSL false positive in cmake 3.26.4 | ||
| # When downloading the manual. 3.21 is required for installing the | ||
| # ANGLE Dlls via IMPORTED_RUNTIME_ARTIFACTS | ||
| cmake-version: "3.21.x" | ||
| cmake-version: "3.22.x" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here the comment about 3.26.4 is lost. How is the situation now? |
||
|
|
||
| - name: "[Windows] Set up MSVC Developer Command Prompt" | ||
| if: runner.os == 'Windows' | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment above need to be adjusted
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simply increasing the version number is not enough to make the comment apply.
The ANGLE DLLs are no longer the reason for the minimum required version; something else is now. The reason for 3.22 should be described here.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the minim Qt requirement. Should I put this here or just remove it and document it in CMakeFile?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the general requirement in CMakeLists.txt is the same, we don't need a comment here. Than CMakeLists.txt is the better place for this information.