mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-08 19:32:39 +08:00
MinGW: add build script for MinGW
This commit is contained in:
parent
a2339ee516
commit
85de32207f
13
build-mingw
Normal file
13
build-mingw
Normal 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user