MinGW: add build script for MinGW

This commit is contained in:
Jonathan Campbell 2018-03-06 09:58:01 -08:00
parent a2339ee516
commit 85de32207f

13
build-mingw Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# prefer to compile against our own copy of SDL 1.x
echo Compiling our internal SDL 1.x
(cd vs2015/sdl && ./build-dosbox.sh) || exit 1
# now compile ourself
echo Compiling DOSBox-X
chmod +x configure
# FIXME: I would like MinGW builds to enable the debugger, eventually
./configure --enable-core-inline --prefix=/usr || exit 1
make -j3 || exit 1