mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
2229c7557d
They're hard-coded for my current setup, but easy to fix.
7 lines
235 B
Bash
Executable file
7 lines
235 B
Bash
Executable file
#!/bin/sh
|
|
MINGW=/home/bill/src/mingw/mingw-cross-env-2.18
|
|
export PKG_CONFIG_PATH=$MINGW/usr/lib/pkgconfig
|
|
export PATH=$MINGW/usr/bin:$PATH
|
|
../configure --host=i686-pc-mingw32 \
|
|
SDL_CONFIG=$MINGW/usr/i686-pc-mingw32/bin/sdl-config $*
|
|
|