summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorRay <[email protected]>2022-09-01 10:52:03 +0200
committerGitHub <[email protected]>2022-09-01 10:52:03 +0200
commitbb4d9297b5118e4039bd08d41e51dee2ab18e312 (patch)
tree784333c9bd439010915334eedf52ebdc969f8da9 /.github/workflows
parent4938966e768acfdb4963e33e76ad26ba4298f218 (diff)
downloadraylib-bb4d9297b5118e4039bd08d41e51dee2ab18e312.tar.gz
raylib-bb4d9297b5118e4039bd08d41e51dee2ab18e312.zip
Update windows.yml
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/windows.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 4653b3a4..3927a1b5 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -33,12 +33,10 @@ jobs:
- compiler: mingw-w64
bits: 32
ARCH: "i686"
- COMPILER_PATH: "C:\\msys64\\mingw32\\bin"
WINDRES_ARCH: pe-i386
- compiler: mingw-w64
bits: 64
ARCH: "x86_64"
- COMPILER_PATH: "C:\\msys64\\mingw64\\bin"
WINDRES_ARCH: pe-x86-64
- compiler: msvc16
bits: 32
@@ -83,12 +81,11 @@ jobs:
- name: Build Library (MinGW-w64)
run: |
cd src
- set PATH=%PATH%;${{ matrix.COMPILER_PATH }}
${{ matrix.ARCH }}-w64-mingw32-gcc.exe --version
- ${{ matrix.COMPILER_PATH }}\windres.exe --version
+ 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 }}
+ 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