diff options
| author | Ray <[email protected]> | 2022-09-01 10:42:11 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-01 10:42:11 +0200 |
| commit | bfab101ac2955865975780bcfd466ebf20dd0694 (patch) | |
| tree | 9cef180f1cd835c81f171a0ef179dba005f65170 /.github/workflows | |
| parent | 23cc39a265d42c693f08c23b54a043d1648b8266 (diff) | |
| download | raylib-bfab101ac2955865975780bcfd466ebf20dd0694.tar.gz raylib-bfab101ac2955865975780bcfd466ebf20dd0694.zip | |
Update windows.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/windows.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fb216cbf..b687c83e 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -84,13 +84,15 @@ jobs: cd src set PATH=%PATH%;${{ matrix.COMPILER_PATH }} ${{ matrix.ARCH }}-w64-mingw32-gcc.exe --version - ${{ matrix.COMPILER_PATH }}/windres.exe --version + ${{ matrix.COMPILER_PATH }}\windres.exe --version + dir C:\msys64\mingw64\bin make PLATFORM=PLATFORM_DESKTOP CC=${{ matrix.ARCH }}-w64-mingw32-gcc.exe RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" - ${{ matrix.COMPILER_PATH }}/windres.exe -i raylib.dll.rc -o raylib.dll.rc.data -O coff --target=${{ matrix.WINDRES_ARCH }} + ${{ matrix.COMPILER_PATH }}\windres.exe -i raylib.dll.rc -o raylib.dll.rc.data -O coff --target=${{ matrix.WINDRES_ARCH }} make PLATFORM=PLATFORM_DESKTOP CC=${{ matrix.ARCH }}-w64-mingw32-gcc.exe RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" -B cd .. shell: cmd - if: matrix.compiler == 'mingw-w64' + # NOTE: The MinGW-w64 compiler provided by the host only supports 64bit compilation + if: matrix.compiler == 'mingw-w64' && bits == '64' - name: Build Library (MSVC16) run: | |
