Update build-windows.yml

This commit is contained in:
oxmc
2024-05-08 08:50:37 -07:00
committed by GitHub
parent 4a1d29d13e
commit 7690ac4ae0

View File

@@ -36,10 +36,10 @@ jobs:
run: choco install mingw run: choco install mingw
- name: Configure CMake - name: Configure CMake
run: cmake -B ${{github.workspace}}\build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ run: cmake -B ${{github.workspace}}/build -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++
- name: Build - name: Build
run: cmake --build ${{github.workspace}}\build --config ${{env.BUILD_TYPE}} run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
with: with: