mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
049b6c0426
Admittedly I believe I'm the only one using this script (and related .nsi file), it still seems to make sense to keep it up to date in the repository. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
43 lines
1.3 KiB
Bash
Executable file
43 lines
1.3 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# just a small shell script that is used to invoke make with the right
|
|
# parameters to cross compile a binary for Windows
|
|
#
|
|
# the paths work for the default mingw32 install on Fedora - adjust as
|
|
# necessary
|
|
# this assumes that local cross builds for libdivecomputer and libgit2
|
|
# are in ../libdivecomputer and ../libgit2
|
|
|
|
# force recreation of the nsi file and Subsurface version header file
|
|
# in order to get the correct version number
|
|
BASEDIR=$(dirname $0)
|
|
rm $BASEDIR/subsurface.nsi > /dev/null 2>&1
|
|
rm $BASEDIR/../../ssrf-version.h > /dev/null 2>&1
|
|
|
|
export PATH=/usr/i686-w64-mingw32/sys-root/mingw/bin:$PATH
|
|
export objdump=mingw-objdump
|
|
|
|
if [[ $1 == "Qt5" ]] ; then
|
|
shift
|
|
mingw32-qmake-qt5 \
|
|
CROSS_PATH=/usr/i686-w64-mingw32/sys-root/mingw \
|
|
QMAKE_LRELEASE=/usr/i686-w64-mingw32/bin/qt5/lrelease \
|
|
QMAKE_MOC=/usr/i686-w64-mingw32/bin/qt5/moc \
|
|
QMAKE_UIC=/usr/i686-w64-mingw32/bin/qt5/uic \
|
|
QMAKE_RCC=/usr/i686-w64-mingw32/bin/qt5/rcc \
|
|
LIBDCDEVEL=../libdivecomputer \
|
|
LIBMARBLEDEVEL=../marble \
|
|
LIBGIT2DEVEL=../libgit2 CONFIG+=libgit21-api \
|
|
$BASEDIR/../../subsurface.pro
|
|
|
|
else
|
|
|
|
mingw32-qmake-qt4 \
|
|
CROSS_PATH=/usr/i686-w64-mingw32/sys-root/mingw \
|
|
LIBDCDEVEL=../libdivecomputer \
|
|
LIBMARBLEDEVEL=../marble \
|
|
LIBGIT2DEVEL=../libgit2 CONFIG+=libgit21-api \
|
|
$BASEDIR/../../subsurface.pro
|
|
fi
|
|
|
|
mingw32-make $@
|