mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
f68ae3ad5d
Note that this support relies on the -multi branch (separate git repo on github) util it gets merged.
19 lines
470 B
Bash
Executable file
19 lines
470 B
Bash
Executable file
#!/bin/sh -x
|
|
set -e
|
|
mkdir -p native x86_64-w64-mingw32
|
|
cd native
|
|
../../configure \
|
|
--disable-shared \
|
|
--without-clients \
|
|
--without-servers \
|
|
--with-tools=qfcc,pak
|
|
cd ../x86_64-w64-mingw32
|
|
export MINGW=/opt/mxe
|
|
export MINGW_USR=$MINGW/usr/x86_64-w64-mingw32
|
|
export PKG_CONFIG_LIBDIR=$MINGW_USR/lib/pkgconfig
|
|
export PKG_CONFIG_PATH=$MINGW_USR/local/lib/pkgconfig
|
|
export PATH=$MINGW/usr/bin:$PATH
|
|
../../configure \
|
|
--host=x86_64-w64-mingw32 \
|
|
--disable-shared \
|
|
$*
|