From fa86d01263b05a97b6d14a7b2958a0f3cb098efb Mon Sep 17 00:00:00 2001 From: nesbox Date: Sun, 6 Aug 2023 15:19:37 +0200 Subject: [PATCH] test mingw build --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 80506d3db..0e8f2eb09 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,9 +23,8 @@ jobs: - name: Build shell: bash run: | - export CC=gcc cd build - cmake -G "MSYS Makefiles" -DCMAKE_C_COMPILER=/mingw64/bin/gcc -DBUILD_SDLGPU=On -DCMAKE_BUILD_TYPE=%BUILD_TYPE% .. + cmake -G "MSYS Makefiles" -DCMAKE_C_COMPILER=C:/msys64/mingw64/bin/gcc.exe -DCMAKE_CXX_COMPILER=C:/msys64/mingw64/bin/c++.exe -DBUILD_SDLGPU=On -DCMAKE_BUILD_TYPE=%BUILD_TYPE% .. cmake --build . --config %BUILD_TYPE% --parallel - name: Deploy