File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change 77
77
78
78
if : matrix.compiler == 'msvc16'
79
79
80
- - name : Build Library (MinGW-w64)
80
+ - name : Build Library (MinGW-w64 32bit)
81
+ run : |
82
+ cd src
83
+ x86_64-w64-mingw32-gcc.exe --version
84
+ windres.exe --version
85
+ dir C:\msys64\mingw64\bin
86
+ make PLATFORM=PLATFORM_DESKTOP CC=x86_64-w64-mingw32-gcc.exe RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" CFLAGS=-m32
87
+ //windres.exe -i raylib.dll.rc -o raylib.dll.rc.data -O coff --target=${{ matrix.WINDRES_ARCH }}
88
+ //make PLATFORM=PLATFORM_DESKTOP CC=${{ matrix.ARCH }}-w64-mingw32-gcc.exe RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" -B
89
+ cd ..
90
+ shell : cmd
91
+ if : |
92
+ matrix.compiler == 'mingw-w64' &&
93
+ matrix.bits == 32
94
+
95
+ - name : Build Library (MinGW-w64 64bit)
81
96
run : |
82
97
cd src
83
98
${{ matrix.ARCH }}-w64-mingw32-gcc.exe --version
88
103
make PLATFORM=PLATFORM_DESKTOP CC=${{ matrix.ARCH }}-w64-mingw32-gcc.exe RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" -B
89
104
cd ..
90
105
shell : cmd
91
- if : matrix.compiler == 'mingw-w64'
106
+ if : |
107
+ matrix.compiler == 'mingw-w64' &&
108
+ matrix.bits == 64
92
109
93
110
- name : Build Library (MSVC16)
94
111
run : |
You can’t perform that action at this time.
0 commit comments