blob: 03c1ee9b61001f6ef12e5ccd2b827e85a6ed7414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Description: Written configuration file with the build.sh content.
Author: Innocent De Marchi <tangram.peces@gmail.com>
Last-Update: 2017-11-18
Forwarded: yes
--- /dev/null
+++ b/configure
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+echo "***"
+echo "*** This script assumes Debian's Qt setup with a qtchooser supporting the -qt=5 option."
+echo "*** On Debian Squeeze, change to use -qt=4 instead."
+echo "*** Other Qt setups may require removing the -qt=5 option from qmake and setting QTDIR and PATH as usual."
+echo "***"
+
+VERSION_NUMBER=`./VERSION`
+
+qmake -qt=5 "VERSION_NUMBER=$VERSION_NUMBER" "$@" fracplanet.pro && make -j 4
|