summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorcoco875 <59367621+coco875@users.noreply.github.com>2025-08-06 15:02:14 +0200
committerLywx <kiritodev01@gmail.com>2025-08-06 09:16:54 -0600
commitee47ca02120f50daf4fa1656e8369cdcdd576803 (patch)
treedcb03b206d0c6af185891ea5fc03e8f6adbf1a3d /.github
parent56c2f1c69dae708c5722401b5b328ffde6fae120 (diff)
Update windows_build.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows_build.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml
index 3281641..4f1d506 100644
--- a/.github/workflows/windows_build.yml
+++ b/.github/workflows/windows_build.yml
@@ -26,6 +26,11 @@ jobs:
run: |
cmake -S . -B "build/${{ matrix.arch }}" -G "${{ matrix.generate }}" -DCMAKE_TOOLCHAIN_FILE="${{ matrix.toolchain }}" -DCMAKE_GENERATOR_PLATFORM=${{ matrix.arch }} -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }} -DUSE_STANDALONE=${{ matrix.standalone }}
cmake --build ./build/${{ matrix.arch }}
+ - name: Setup Variables
+ if: ${{ matrix.generate == 'Ninja' }}
+ uses: ilammy/msvc-dev-cmd@v1
+ with:
+ arch: ${{ matrix.arch }}
- name: Build Ninja
if: ${{ matrix.generate == 'Ninja' }}
run: |