quakeforge/tools/cross/mingw/cross-configure.sh
2023-03-25 21:37:26 +09:00

21 lines
550 B
Bash
Executable file

#!/bin/sh -x
set -e
mkdir -p native i686-w64-mingw32.static
cd native
../../configure \
--enable-silent-rules \
--disable-shared \
--without-clients \
--without-servers \
--with-tools=qfcc,pak,qwaq
cd ../i686-w64-mingw32.static
export MINGW=/opt/mxe
export MINGW_USR=$MINGW/usr/i686-w64-mingw32.static
export PKG_CONFIG_LIBDIR=$MINGW_USR/lib/pkgconfig
export PKG_CONFIG_PATH=$MINGW_USR/local/lib/pkgconfig
export PATH=$MINGW/usr/bin:$PATH
export QCSYSPREFIX=$MINGW_USR
../../configure \
--host=i686-w64-mingw32.static \
--disable-shared \
$*