We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99b9c9a commit 49c6351Copy full SHA for 49c6351
.github/workflows/build.yml
@@ -35,10 +35,13 @@ jobs:
35
uses: actions/checkout@v4
36
37
# See https://github.com/microsoft/DirectXTK/wiki/Audio#using-the-vcpkg-c-library-manager
38
- - name: Add directxtk for xaudio2
39
- if: runner.os == 'Windows'
40
- run: vcpkg install directxtk[xaudio2redist]
41
- # run: vcpkg install directxtk[xaudio2redist]:x64-windows
+ - name: Add directxtk for xaudio2 windows x86_64
+ if: matrix.name == 'windows-x86-64'
+ run: vcpkg install directxtk[xaudio2redist]:x64-windows
+
42
+ - name: Add directxtk for xaudio2 windows arm64
43
+ if: matrix.name == 'windows-arm64'
44
+ run: vcpkg install directxtk[xaudio2redist]:arm64-windows
45
46
- name: Build
47
shell: bash
0 commit comments