[FIX]: Window Build Fix

This commit is contained in:
2026-01-26 22:55:39 +05:30
parent fac013d63f
commit 21a474b6f9
75 changed files with 5430 additions and 4643 deletions

View File

@ -18,6 +18,7 @@ jobs:
fail-fast: false
matrix:
target: [x64-linux]
steps:
- uses: actions/checkout@v4
@ -29,3 +30,23 @@ jobs:
- name: Build
run: cmake --build --preset ${{ matrix.target }} --config Release
build-windows:
runs-on: windows-latest
permissions:
contents: read
strategy:
fail-fast: false
matrix:
target: [x64-windows]
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Configure
run: cmake --preset ${{ matrix.target }}
- name: Build
run: cmake --build --preset ${{ matrix.target }} --config Release