1291
|
1 |
<?xml version="1.0"?>
|
|
2 |
<project name="run-qmake" default="all">
|
|
3 |
|
|
4 |
<target name="all" depends="sd-qmake-all-profiles"/>
|
|
5 |
|
|
6 |
|
|
7 |
<target name="sf-configure-orbit">
|
|
8 |
<sequential>
|
|
9 |
<exec executable="cmd" dir="${r'$'}{build.drive}${unit.@bldFile}" failonerror="false" output="${r'$'}{build.drive}/output/logs/${ant['build.id']}_compile_hb_configure.log">
|
|
10 |
<arg value="/C"/>
|
|
11 |
<arg value="python"/>
|
|
12 |
<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"/>
|
|
13 |
</exec>
|
|
14 |
|
|
15 |
<echo>INFO: Exporting Orbit mkspecs to epoc32\tools for ${unit.@bldFile}/${unit.@proFile}</echo>
|
|
16 |
<echo>INFO: Running Orbit theme installer, make install step</echo>
|
|
17 |
<exec executable="cmd" dir="${r'$'}{build.drive}${unit.@bldFile}" failonerror="false" output="${r'$'}{build.drive}/output/logs/${ant['build.id']}_install_hb_configure.log">
|
|
18 |
<arg value="/C"/>
|
|
19 |
<arg value="make install"/>
|
|
20 |
</exec>
|
|
21 |
</sequential>
|
|
22 |
</target>
|
|
23 |
|
|
24 |
|
|
25 |
</project>
|