-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fabien Givors
committed
Jan 18, 2023
1 parent
6f4e09f
commit 1059571
Showing
1 changed file
with
6 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 |
---|---|---|
|
@@ -158,17 +158,16 @@ jobs: | |
runs-on: windows-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Install dependencies | ||
uses: lukka/run-vcpkg@v4 | ||
uses: actions/checkout@v3 | ||
- uses: lukka/get-cmake@latest | ||
- name: Setup vcpkg | ||
uses: lukka/run-vcpkg@v10 | ||
with: | ||
vcpkgDirectory: ${{ github.workspace }}/vcpkg | ||
vcpkgArguments: fluidsynth qt5-base qt5-tools freetype ftgl | ||
vcpkgGitUrl: 'https://github.com/microsoft/vcpkg.git' | ||
vcpkgGitCommitId: '56fffbe49dfb4dd8fae0940f272c5fd2b86be991' | ||
vcpkgTriplet: x64-windows | ||
vcpkgGitCommitId: e1934f4a2a0c58bb75099d89ed980832379907fa | ||
- name: | ||
run: | | ||
vcpkg install fluidsynth qt5-base qt5-tools freetype ftgl | ||
mkdir build | ||
cd build | ||
cmake .. -DWITH_INTERNAL_FLUIDSYNTH=OFF -DCMAKE_TOOLCHAIN_FILE="${GITHUB_WORKSPACE}"/vcpkg/scripts/buildsystems/vcpkg.cmake -DQT_PACKAGE_NAME=Qt5 | ||
|