quakeforge/tools/cross/mingw/cross-configure.sh

20 lines
458 B
Bash
Executable File

#!/bin/sh -x
set -e
mkdir -p native i686-pc-mingw32
cd native
../../configure \
--disable-shared \
--without-clients \
--without-servers \
--with-tools=qfcc,pak
cd ../i686-pc-mingw32
export MINGW=/opt/mxe
export MINGW_USR=$MINGW/usr/i686-pc-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=i686-pc-mingw32 \
--disable-shared \
$*