sf-tools/run-qmake.ant.xml.ftl
changeset 1266 acc4b03313f0
parent 1265 c79c5ad11c63
child 1267 da1ff046acdc
equal deleted inserted replaced
1265:c79c5ad11c63 1266:acc4b03313f0
     1 <?xml version="1.0"?>
     1 <?xml version="1.0"?>
     2 <project name="run-qmake" default="all">
     2 <project name="run-qmake" default="all">
     3 
     3 
     4     <target name="all" depends="sf-configure-orbit"/>
     4     <target name="all" depends="sd-qmake-all-profiles"/>
     5 
     5 
     6 
     6 
     7     <target name="sf-configure-orbit">
     7     <target name="sf-configure-orbit">
     8         <sequential>
     8         <sequential>
     9                     <echo>INFO: Configuring Orbit host based tools.</echo>
     9   <#list data["//unit[@proFile = 'hb.pro']"] as unit>
    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">
    10             <echo>Running configure.py for ${unit.@bldFile}/${unit.@proFile}</echo>
       
    11             <if>
       
    12                 <available file="${r'$'}{build.drive}${unit.@bldFile}" type="dir"/>
       
    13                 <then>
       
    14                     <exec executable="cmd" dir="${r'$'}{build.drive}${unit.@bldFile}" failonerror="false" output="${r'$'}{build.drive}/output/logs/${ant['build.id']}_compile_hb_configure.log">
    11                         <arg value="/C"/>
    15                         <arg value="/C"/>
    12                         <arg value="python"/>
    16                         <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"/>
    17                         <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>
    18                     </exec>
    15                         
    19                         
    16                     <echo>INFO: Making host based tools.</echo>
    20                     <echo>INFO: Exporting Orbit mkspecs to epoc32\tools for ${unit.@bldFile}/${unit.@proFile}</echo>
    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">
    21                     <echo>INFO: Running Orbit theme installer, make install step</echo>
       
    22                     <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"/>
    23                         <arg value="/C"/>
    19                         <arg value="mingw32-make"/>
    24                         <arg value="make install"/>
    20                     </exec>
    25                     </exec>
    21                     <echo>INFO: Exporting Orbit mkspecs to epoc32\tools</echo>
    26                 </then>
    22                     <echo>INFO: Running Orbit theme installer, make install step</echo>
    27                 <else>
    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">
    28                     <echo message="ERROR: Directory ${r'$'}{build.drive}${unit.@bldFile} doesn't exist."/>
    24                         <arg value="/C"/>
    29                 </else>
    25                         <arg value="mingw32-make install"/>
    30             </if>
    26                     </exec>
    31   </#list>
    27         </sequential>
    32         </sequential>
    28     </target>
    33     </target>
    29 
    34 
    30     
    35     
    31 </project>
    36 </project>