mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
b40c8de35b
I debated about this commit... we don't use these scripts any more, but it seems like it would be worse to leave the Grantlee references in them. Yet of course this is all no longer tested. Maybe it is time to delete the scripts from the tree. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
21 lines
640 B
Bash
21 lines
640 B
Bash
#!/bin/bash
|
|
# this gets executed inside the container when building a Windows
|
|
# installer on Travis
|
|
#
|
|
# working directory is assumed to be the directory including all the
|
|
# source directories (subsurface, googlemaps, etc)
|
|
# in order to be compatible with the assumed layout in the MXE script, we
|
|
# need to create the secondary build directory
|
|
|
|
set -x
|
|
set -e
|
|
|
|
mkdir -p win32
|
|
cd win32
|
|
|
|
# right now the container still has an older version of MXE installed
|
|
export MXEBUILDTYPE=i686-w64-mingw32.shared
|
|
|
|
bash -ex ../subsurface/packaging/windows/mxe-based-build.sh installer
|
|
|
|
bash -ex ../subsurface/packaging/windows/smtk2ssrf-mxe-build.sh -a -i
|