We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb5af12 commit 81ed5a4Copy full SHA for 81ed5a4
.github/workflows/windows-x86_64.yml
@@ -29,11 +29,16 @@ jobs:
29
& "C:\vcpkg\bootstrap-vcpkg.bat"
30
echo "VCPKG_ROOT=C:\vcpkg" | Out-File -Append -Encoding ascii $env:GITHUB_ENV
31
32
- - name: Integrate vcpkg and install dependencies
+ - name: Integrate vcpkg
33
run: |
34
$env:VCPKG_ROOT = "C:\vcpkg"
35
& "$env:VCPKG_ROOT\vcpkg" integrate install
36
- & "$env:VCPKG_ROOT\vcpkg" install --triplet x64-windows your-library-list
+
37
+ - name: Install dependencies
38
+ run: |
39
+ $env:VCPKG_ROOT = "C:\vcpkg"
40
+ cd $env:GITHUB_WORKSPACE
41
+ & "$env:VCPKG_ROOT\vcpkg" install
42
43
- name: Prepare build environment
44
0 commit comments