~w-shackleton/droidpad-pc/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# Set this variable beforehand if your mingw-w64 is somewhere else (which it almost certainly will be).
if [ "$MINGW64_PATH" = "" ]
then
MINGW64_PATH=/usr
fi

export PATH="$MINGW64_PATH/bin:$PATH"
MINGW64_LOCATION=$MINGW64_PATH/x86_64-w64-mingw32

./configure --host=x86_64-w64-mingw32 --disable-shared --disable-debug --with-wx-prefix=$MINGW64_LOCATION --prefix=$MINGW64_LOCATION --enable-sponsor-message "$@"

# echo ""
# echo "Please run 'export PATH=$MINGW64_PATH/bin:\$PATH'"