diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d55c3a7..d3bbc25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,10 @@ jobs: if: matrix.os == 'ubuntu-latest' run: sudo apt install -f vulkan-sdk libsdl2-dev - name: Configure + if: matrix.os != 'windows-latest' run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release + - name: Configure (Windows) + if: matrix.os == 'windows-latest' + run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake - name: Build run: cmake --build build --target all -v