1#!/bin/sh
2
3echo "***"
4echo "*** This script assumes Debian's Qt setup with a qtchooser supporting the -qt=5 option."
5echo "*** On Debian Squeeze, change to use -qt=4 instead."
6echo "*** Other Qt setups may require removing the -qt=5 option from qmake and setting QTDIR and PATH as usual."
7echo "***"
8
9VERSION_NUMBER=`./VERSION`
10
11qmake -qt=5 "VERSION_NUMBER=$VERSION_NUMBER" main.pro && make -j 4
12