diff options
| author | coco875 <59367621+coco875@users.noreply.github.com> | 2025-08-06 00:10:54 +0200 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2025-08-06 09:16:54 -0600 |
| commit | 7afe21a425e222cdf6e649aaaa414a16448c19f7 (patch) | |
| tree | f451afdf81616a0996dc7fdc7d86fed6f871fbca /.github | |
| parent | 625860eb3266376a214ce1fae47d873c6129a71f (diff) | |
try two generator
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/windows_build.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index a02711f..f8c9455 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -13,11 +13,12 @@ jobs: matrix: config: [Release, Debug] toolchain: [v143, clangcl] + generate: [Visual Studio 17 2022, Ninja] steps: - uses: actions/checkout@v4 - name: Build run: | - cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T ${{ matrix.toolchain }} -A x64 -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }} + cmake -S . -B "build/x64" -G ${{ matrix.generate }} -T ${{ matrix.toolchain }} -A x64 -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }} cmake --build ./build/x64 - name: Publish packaged artifacts if: ${{ matrix.config == 'Release' }} |
