author | Johan Groth <johang@symbian.org> |
Fri, 08 Oct 2010 15:18:03 +0100 | |
changeset 1297 | c79c5ad11c63 |
parent 1296 | ba3ce53a881a |
child 1298 | acc4b03313f0 |
permissions | -rw-r--r-- |
1291 | 1 |
<?xml version="1.0"?> |
2 |
<project name="run-qmake" default="all"> |
|
3 |
||
1294
6a48e8922c95
Removed conditions in exec step.
Johan Groth <johang@symbian.org>
parents:
1293
diff
changeset
|
4 |
<target name="all" depends="sf-configure-orbit"/> |
1291 | 5 |
|
6 |
||
7 |
<target name="sf-configure-orbit"> |
|
8 |
<sequential> |
|
1296
ba3ce53a881a
Added make stage of tools build.
Johan Groth <johang@symbian.org>
parents:
1295
diff
changeset
|
9 |
<echo>INFO: Configuring Orbit host based tools.</echo> |
1294
6a48e8922c95
Removed conditions in exec step.
Johan Groth <johang@symbian.org>
parents:
1293
diff
changeset
|
10 |
<exec executable="cmd" dir="${r'$'}{build.drive}/sf/mw/hb" failonerror="false" output="${r'$'}{build.drive}/output/logs/${ant['build.id']}_compile_hb_configure.log"> |
1291 | 11 |
<arg value="/C"/> |
12 |
<arg value="python"/> |
|
13 |
<arg line ="configure.py --host-make-bin=mingw32-make.exe --host-qmake-bin=qmake.exe --qmake-spec=win32-g++ --platform=symbian --qmake-options=MMP_RULES+=EXPORTUNFROZEN CONFIG+=sgimagelite_support DEFINES+=HB_EFFECTS_OPENVG DEFINES+=HB_FILTER_EFFECTS"/> |
|
14 |
</exec> |
|
15 |
||
1296
ba3ce53a881a
Added make stage of tools build.
Johan Groth <johang@symbian.org>
parents:
1295
diff
changeset
|
16 |
<echo>INFO: Making host based tools.</echo> |
ba3ce53a881a
Added make stage of tools build.
Johan Groth <johang@symbian.org>
parents:
1295
diff
changeset
|
17 |
<exec executable="cmd" dir="${r'$'}{build.drive}/sf/mw/hb" failonerror="false" output="${r'$'}{build.drive}/output/logs/${ant['build.id']}_compile_hb_make.log"> |
ba3ce53a881a
Added make stage of tools build.
Johan Groth <johang@symbian.org>
parents:
1295
diff
changeset
|
18 |
<arg value="/C"/> |
1297
c79c5ad11c63
Changed make tool to mingw32-make.
Johan Groth <johang@symbian.org>
parents:
1296
diff
changeset
|
19 |
<arg value="mingw32-make"/> |
1296
ba3ce53a881a
Added make stage of tools build.
Johan Groth <johang@symbian.org>
parents:
1295
diff
changeset
|
20 |
</exec> |
ba3ce53a881a
Added make stage of tools build.
Johan Groth <johang@symbian.org>
parents:
1295
diff
changeset
|
21 |
<echo>INFO: Exporting Orbit mkspecs to epoc32\tools</echo> |
1291 | 22 |
<echo>INFO: Running Orbit theme installer, make install step</echo> |
1295
b8cd1888a3b2
Removed template specific stuff.
Johan Groth <johang@symbian.org>
parents:
1294
diff
changeset
|
23 |
<exec executable="cmd" dir="${r'$'}{build.drive}/sf/mw/hb" failonerror="false" output="${r'$'}{build.drive}/output/logs/${ant['build.id']}_install_hb_configure.log"> |
1291 | 24 |
<arg value="/C"/> |
1297
c79c5ad11c63
Changed make tool to mingw32-make.
Johan Groth <johang@symbian.org>
parents:
1296
diff
changeset
|
25 |
<arg value="mingw32-make install"/> |
1291 | 26 |
</exec> |
27 |
</sequential> |
|
28 |
</target> |
|
29 |
||
30 |
||
31 |
</project> |