common/templates/run-qmake.ant.xml.ftl
author brendand@symbian.org
Tue, 22 Jun 2010 11:48:19 +0100
changeset 1120 794ddd7e666a
parent 1052 401ecaf0a844
child 1121 82b232da6082
permissions -rw-r--r--
Modified run-qmake template to make it work in the context of smoketest exec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
971
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
     1
<?xml version="1.0"?>
1120
794ddd7e666a Modified run-qmake template to make it work in the context of smoketest exec
brendand@symbian.org
parents: 1052
diff changeset
     2
<project name="run-qmake" default="all">
971
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
     3
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
     4
    <target name="all">
1023
ebfa9f019473 Build qmake in .ftl, prior to running on all .pro files
Shabe Razvi <shaber@symbian.org>
parents: 1022
diff changeset
     5
1048
f3a459ab2cfe Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents: 1047
diff changeset
     6
    <if><not><available file="${r'$'}{build.drive}/epoc32/tools/qt/qmake.exe" type="file"/></not>
f3a459ab2cfe Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents: 1047
diff changeset
     7
    <then>
1023
ebfa9f019473 Build qmake in .ftl, prior to running on all .pro files
Shabe Razvi <shaber@symbian.org>
parents: 1022
diff changeset
     8
	        <sequential>
ebfa9f019473 Build qmake in .ftl, prior to running on all .pro files
Shabe Razvi <shaber@symbian.org>
parents: 1022
diff changeset
     9
ebfa9f019473 Build qmake in .ftl, prior to running on all .pro files
Shabe Razvi <shaber@symbian.org>
parents: 1022
diff changeset
    10
	<#list data["//unit/@bldFile/.."] as unit>
1024
70ffcd2e5da9 Correct location of Qt deviceconfiguration
Shabe Razvi <shaber@symbian.org>
parents: 1023
diff changeset
    11
          <#if (unit.@bldFile=="/sf/mw/qt/src/s60installs/deviceconfiguration")>
1025
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    12
                <echo>INFO: Building and configuring qmake for ${unit.@bldFile}</echo>
1022
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    13
                <if>
1024
70ffcd2e5da9 Correct location of Qt deviceconfiguration
Shabe Razvi <shaber@symbian.org>
parents: 1023
diff changeset
    14
                    <available file="${r'$'}{build.drive}/${unit.@bldFile}" type="dir"/>
1022
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    15
                    <then>
1024
70ffcd2e5da9 Correct location of Qt deviceconfiguration
Shabe Razvi <shaber@symbian.org>
parents: 1023
diff changeset
    16
                        <exec executable="cmd" dir="${r'$'}{build.drive}/${unit.@bldFile}" failonerror="false">
1022
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    17
                            <arg value="/C"/>
1023
ebfa9f019473 Build qmake in .ftl, prior to running on all .pro files
Shabe Razvi <shaber@symbian.org>
parents: 1022
diff changeset
    18
                            <arg line="sbs -c tools2 -j 4 --logfile=${r'$'}{build.drive}/output/logs/${ant['build.id']}_compile_qmake.log"/>
1022
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    19
                        </exec>
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    20
                    </then>
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    21
                    <else>
1024
70ffcd2e5da9 Correct location of Qt deviceconfiguration
Shabe Razvi <shaber@symbian.org>
parents: 1023
diff changeset
    22
                       <echo message="ERROR: Directory ${r'$'}{build.drive}/${unit.@bldFile} doesn't exist."/>
70ffcd2e5da9 Correct location of Qt deviceconfiguration
Shabe Razvi <shaber@symbian.org>
parents: 1023
diff changeset
    23
                       <fail message="Unit /sf/mw/qt/src/s60installs/deviceconfiguration is in the model, but not present on disk. Cannot build qmake!"/>
1022
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    24
                    </else>
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    25
                </if>          
1023
ebfa9f019473 Build qmake in .ftl, prior to running on all .pro files
Shabe Razvi <shaber@symbian.org>
parents: 1022
diff changeset
    26
	      </#if>
ebfa9f019473 Build qmake in .ftl, prior to running on all .pro files
Shabe Razvi <shaber@symbian.org>
parents: 1022
diff changeset
    27
    </#list>			
ebfa9f019473 Build qmake in .ftl, prior to running on all .pro files
Shabe Razvi <shaber@symbian.org>
parents: 1022
diff changeset
    28
			</sequential>
1048
f3a459ab2cfe Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents: 1047
diff changeset
    29
    </then>
f3a459ab2cfe Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents: 1047
diff changeset
    30
    </if>
1025
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    31
	        <sequential>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    32
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    33
	<#list data["//unit/@bldFile/.."] as unit>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    34
          <#if (unit.@bldFile=="/sf/mw/qtextensions/group")>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    35
                <echo>INFO: Configuring qtextensions for ${unit.@bldFile}</echo>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    36
                <if>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    37
                    <available file="${r'$'}{build.drive}/${unit.@bldFile}" type="dir"/>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    38
                    <then>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    39
                        <exec executable="cmd" dir="${r'$'}{build.drive}/${unit.@bldFile}" failonerror="false">
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    40
                            <arg value="/C"/>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    41
                            <arg line="sbs -c tools2 -j 4 --logfile=${r'$'}{build.drive}/output/logs/${ant['build.id']}_compile_qtextensions.log"/>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    42
                        </exec>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    43
                    </then>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    44
                    <else>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    45
                       <echo message="ERROR: Directory ${r'$'}{build.drive}/${unit.@bldFile} doesn't exist."/>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    46
                    </else>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    47
                </if>          
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    48
	      </#if>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    49
    </#list>			
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    50
			</sequential>
a370015021c1 Add explicit qtextensions configuration step
Shabe Razvi <shaber@symbian.org>
parents: 1024
diff changeset
    51
			
1022
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    52
            <sequential>
b89c1ad56824 Run qmake on Qt package before Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1018
diff changeset
    53
    <#list data["//unit/@proFile/.."] as unit>
1018
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    54
          <#if (unit.@proFile=="hb.pro")>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    55
                <echo>Running configure.py for ${unit.@bldFile}/${unit.@proFile}</echo>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    56
                <if>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    57
                    <available file="${r'$'}{build.drive}/${unit.@bldFile}" type="dir"/>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    58
                    <then>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    59
                        <exec executable="cmd" dir="${r'$'}{build.drive}/${unit.@bldFile}" failonerror="false">
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    60
                            <arg value="/C"/>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    61
                            <arg value="python"/>
1052
401ecaf0a844 Update run-qmake template to add make install step to configure Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1049
diff changeset
    62
                            <arg line ="configure.py --qmake-bin=\epoc32\tools\qmake.bat --qmake-spec=symbian-sbsv2 --platform=symbian --qmake-options=MMP_RULES+=EXPORTUNFROZEN CONFIG+=sgimagelite_support DEFINES+=HB_EFFECTS_OPENVG DEFINES+=HB_FILTER_EFFECTS"/>
401ecaf0a844 Update run-qmake template to add make install step to configure Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1049
diff changeset
    63
                        </exec>
401ecaf0a844 Update run-qmake template to add make install step to configure Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1049
diff changeset
    64
                        
401ecaf0a844 Update run-qmake template to add make install step to configure Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1049
diff changeset
    65
                        <echo>INFO: Exporting Orbit mkspecs to epoc32\tools for ${unit.@bldFile}/${unit.@proFile}</echo>
401ecaf0a844 Update run-qmake template to add make install step to configure Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1049
diff changeset
    66
                        <echo>INFO: Running Orbit theme installer, make install step</echo>
401ecaf0a844 Update run-qmake template to add make install step to configure Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1049
diff changeset
    67
                        <exec executable="cmd" dir="${r'$'}{build.drive}/${unit.@bldFile}" failonerror="false">
401ecaf0a844 Update run-qmake template to add make install step to configure Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1049
diff changeset
    68
                            <arg value="/C"/>
401ecaf0a844 Update run-qmake template to add make install step to configure Orbit
Shabe Razvi <shaber@symbian.org>
parents: 1049
diff changeset
    69
                            <arg value="make install"/>
1018
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    70
                        </exec>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    71
                    </then>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    72
                    <else>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    73
                       <echo message="ERROR: Directory ${r'$'}{build.drive}/${unit.@bldFile} doesn't exist."/>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    74
                    </else>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    75
                </if>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    76
	  </#if>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    77
    </#list>
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    78
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
    79
            </sequential>
979
6c90564578a6 Update qmake template to run Orbit's configure.py tool
Shabe Razvi <shaber@symbian.org>
parents: 971
diff changeset
    80
971
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    81
        <parallel threadCount="${r'$'}{number.of.threads}">
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    82
    <#list data["//unit/@proFile/.."] as unit>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    83
            <sequential>
979
6c90564578a6 Update qmake template to run Orbit's configure.py tool
Shabe Razvi <shaber@symbian.org>
parents: 971
diff changeset
    84
1048
f3a459ab2cfe Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents: 1047
diff changeset
    85
          <#if (unit.@proFile!="hb.pro")>
979
6c90564578a6 Update qmake template to run Orbit's configure.py tool
Shabe Razvi <shaber@symbian.org>
parents: 971
diff changeset
    86
971
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    87
                <echo>Running qmake for ${unit.@bldFile}/${unit.@proFile}</echo>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    88
                <if>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    89
                    <available file="${r'$'}{build.drive}/${unit.@bldFile}" type="dir"/>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    90
                    <then>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    91
                        <exec executable="cmd" dir="${r'$'}{build.drive}/${unit.@bldFile}" failonerror="false">
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    92
                            <arg value="/C"/>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    93
                            <arg value="qmake"/>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    94
                            <!-- arg value="-listgen"/ -->
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    95
                            <#if unit.@qmakeArgs[0]??>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    96
                            <arg line="${unit.@qmakeArgs?xml}"/>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    97
                            <#else>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    98
                            <arg line="${ant['qt.qmake.default.args']?xml}"/>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
    99
                            </#if>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   100
                            <arg value="${unit.@proFile?xml}"/>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   101
                        </exec>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   102
                    </then>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   103
                    <else>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   104
                       <echo message="ERROR: Directory ${r'$'}{build.drive}/${unit.@bldFile} doesn't exist."/>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   105
                    </else>
1018
334e3f2f79e5 Update run-qmake template to run Orbit configure.py first, followed by mkspec export. This should allow hb SYSTEMINCLUDEs for subsequently processed .pro files.
Shabe Razvi <shaber@symbian.org>
parents: 1016
diff changeset
   106
                </if>          
979
6c90564578a6 Update qmake template to run Orbit's configure.py tool
Shabe Razvi <shaber@symbian.org>
parents: 971
diff changeset
   107
	  </#if>
6c90564578a6 Update qmake template to run Orbit's configure.py tool
Shabe Razvi <shaber@symbian.org>
parents: 971
diff changeset
   108
6c90564578a6 Update qmake template to run Orbit's configure.py tool
Shabe Razvi <shaber@symbian.org>
parents: 971
diff changeset
   109
971
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   110
            </sequential>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   111
    </#list>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   112
        </parallel>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   113
    </target>
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   114
    
35d8126bcf87 Use qt.qmake.ant.template property for custom qmake template
Shabe Razvi <shaber@symbian.org>
parents:
diff changeset
   115
</project>