]> Shamusworld >> Repos - virtualjaguar/blob - cross-compile
Replace QtGui includes with QtWidgets, add QT += widgets for qmake
[virtualjaguar] / cross-compile
1 #!/bin/bash
2 #
3 # Short script to do cross compilation with MXE on Linux
4 #
5 # by James Hammons
6 # (C) 2012 Underground Software
7 #
8 #PREFIX=i686-pc-mingw32.static
9 #echo "Cross compiling for Win32..."
10 echo "Cross compiling for Win64..."
11 export PATH=/opt/mxe/usr/bin:$PATH
12 rm makefile-qt
13 #make CROSS=i686-pc-mingw32.static-
14 make CROSS=x86_64-w64-mingw32.static-
15 #rel=`svn info | grep Revision | cut -f 2 -d ' '`
16 rel=`git log -1 --pretty=format:%ci | cut -d ' ' -f 1 | tr -d -`
17 cd release && upx -9v virtualjaguar.exe && zip -9v vj-$rel.zip virtualjaguar.exe
18