From 4c46291d84fa50f6f73ca097e446b51786cfbc46 Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Mon, 15 Sep 2025 13:14:15 -0400 Subject: [PATCH] Update build_audio.yml --- .github/workflows/build_audio.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_audio.yml b/.github/workflows/build_audio.yml index 62250e6..249deb8 100644 --- a/.github/workflows/build_audio.yml +++ b/.github/workflows/build_audio.yml @@ -33,17 +33,22 @@ jobs: echo "VCPKG_INCLUDE_PATH=${{ github.workspace }}\vcpkg\installed\x64-windows\include" >> $env:GITHUB_ENV echo "VCPKG_LIB_PATH=${{ github.workspace }}\vcpkg\installed\x64-windows\lib" >> $env:GITHUB_ENV - - name: Build audio library + - name: Build audio library (MSVC nmake) working-directory: libs/audio + shell: cmd run: | + call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" nmake /f Makefile all - name: List build outputs working-directory: libs/audio + shell: cmd run: | dir - name: Clean build artifacts working-directory: libs/audio + shell: cmd run: | + call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" nmake /f Makefile clean