summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorcoco875 <59367621+coco875@users.noreply.github.com>2025-08-06 00:26:25 +0200
committerLywx <kiritodev01@gmail.com>2025-08-06 09:16:54 -0600
commit0085eb69d2fc507ff1e43f239d53c53f6c4c01fe (patch)
tree2d8c3a1965a55e7f54f47c470dbf4251c12839b1 /.github
parent38fef728091f25aac2f43f9782ac8a9de9a1b20a (diff)
Update windows_build.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows_build.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml
index 816ec37..1a70fda 100644
--- a/.github/workflows/windows_build.yml
+++ b/.github/workflows/windows_build.yml
@@ -21,9 +21,12 @@ jobs:
uses: ashutoshvarma/setup-ninja@master
with:
version: 1.13.1
+ - uses: ilammy/msvc-dev-cmd@v1
+ with:
+ arch: x64
- name: Build
run: |
- cmake -S . -B "build/x64" -G ${{ matrix.generate }} -T ${{ matrix.toolchain }} -A x64 -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }}
+ cmake -S . -B "build/x64" -G ${{ matrix.generate }} -T ${{ matrix.toolchain }} -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }}
cmake --build ./build/x64
- name: Publish packaged artifacts
if: ${{ matrix.config == 'Release' }}