buildframework/helium/tools/compile/qt/qt.ant.xml
author wbernard
Tue, 27 Apr 2010 08:33:08 +0300
changeset 587 85df38eb4012
parent 217 0f5e3a7fb6af
child 628 7c4a911dc066
permissions -rw-r--r--
helium_9.0-a7879c935424

<?xml version="1.0"?>
<!--
============================================================================
Name        : qt.ant.xml
Part of     : Helium

Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
All rights reserved.
This component and the accompanying materials are made available
under the terms of the License "Eclipse Public License v1.0"
which accompanies this distribution, and is available
at the URL "http://www.eclipse.org/legal/epl-v10.html".

Initial Contributors:
Nokia Corporation - initial contribution.

Contributors:

Description:

============================================================================
-->
<!--* @package compile -->
<project name="qt" xmlns:hlm="http://www.nokia.com/helium">
    <description>
    Qt build support.
    </description>
    
    <!-- The location of the ant template to run qmake commands.
    @type string
    -->
    <property name="qt.qmake.ant.template" location="${helium.dir}/tools/compile/qt/templates/run-qmake.ant.xml.ftl" />
    <!-- The location of the makefile template to run qmake commands.
    @type string
    -->
    <property name="qt.qmake.makefile.template" location="${helium.dir}/tools/compile/qt/templates/run-qmake.mk.ftl" />
    <!-- The command lines argument passed to the configure tool.
    @type string
    -->
    <property name="qt.configure.args" value="-platform win32-mwc -xplatform symbian-abld -confirm-license"/>
    <!-- Setting default arguments to qMake command line, if the qmakeArgs is defined from the system definition file then those arguments are discarded.
    @type string
    -->
    <property name="qt.qmake.default.args" value="-r"/>

    <!--* @property qmake.enabled
    Enables the run of qMake over a build configuration so bld.inf and mmps are generated for the build.
    @type boolean
    @scope public
    -->
    
    <!--
        Executing qmake on all Qt components defined under the system definition file.
        It must use schema v1.5.0+, and Qt unit must define a proFile attibute.   
     -->
    <target name="run-qmake">
        <if>
            <istrue value="${qmake.enabled}" />
            <then>
                <!-- Generating the build steps from the sysdef information -->
                <hlm:generate-layers />
                <if>
                    <or>
                        <equals arg1="${build.system}" arg2="ec-helium" />
                        <equals arg1="${build.system}" arg2="sbs-ec" />
                    </or>
                    <then>
                        <fmpp sourceFile="${qt.qmake.makefile.template}"
                            outputFile="${temp.build.dir}/run-qmake-${sysdef.configuration}.mk">
                            <data expandProperties="yes">
                                data: xml(${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}.xml)
                                ant: antProperties()
                            </data>
                        </fmpp>
                        <hlm:assertFileExists file="${temp.build.dir}/run-qmake-${sysdef.configuration}.mk" />
    
                        <!-- Running the qmake steps -->
                        <hlm:emakeMacro name="run-qmake-${sysdef.configuration}" makefile="${temp.build.dir}/run-qmake-${sysdef.configuration}.mk"
                                target="all" dir="${build.drive}/" log="${compile.log.dir}/${build.id}_${sysdef.configuration}.qmake.log"
                                annodetail="basic,history,file,waiting"
                                failonerror="false" 
                                phase="compile"/>
                        <hlm:assertFileExists file="${compile.log.dir}/${build.id}_${sysdef.configuration}.qmake.log" />
                    </then>
                    <else>
                        <fmpp sourceFile="${qt.qmake.ant.template}"
                            outputFile="${temp.build.dir}/run-qmake-${sysdef.configuration}.ant.xml">
                            <data expandProperties="yes">
                                data: xml(${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}.xml)
                                ant: antProperties()
                            </data>
                        </fmpp>
                        <hlm:assertFileExists file="${temp.build.dir}/run-qmake-${sysdef.configuration}.ant.xml" />
    
                        <!-- Running the qmake steps -->
                        <ant antfile="${temp.build.dir}/run-qmake-${sysdef.configuration}.ant.xml" dir="${build.drive}/"
                            output="${compile.log.dir}/${build.id}_${sysdef.configuration}.qmake.log"/>
                        <hlm:assertFileExists file="${compile.log.dir}/${build.id}_${sysdef.configuration}.qmake.log" />
                    </else>
                </if>
                <copy file="${compile.log.dir}/${build.id}_${sysdef.configuration}.qmake.log" tofile="${compile.log.dir}/${build.id}_${sysdef.configuration}.qmake.generated.txt">
                    <filterchain>
                        <linecontainsregexp>
                            <regexp pattern="Generating"/>
                        </linecontainsregexp>
                    </filterchain>
                </copy>
                <replaceregexp file="${compile.log.dir}/${build.id}_${sysdef.configuration}.qmake.generated.txt" match="^\s*(?:\[exec\])?\s*Generating[^/\\]*." replace="" byline="true"/>
                <hlm:assertFileExists file="${compile.log.dir}/${build.id}_${sysdef.configuration}.qmake.generated.txt"/>
                <hlm:metadatarecord database="${metadata.dbfile}">
                    <hlm:textmetadatainput>
                        <fileset casesensitive="false" file="${compile.log.dir}/${build.id}_${sysdef.configuration}.qmake.log" />
                        <metadatafilterset refid="filterset.qmake" />
                    </hlm:textmetadatainput>
                </hlm:metadatarecord>
                <hlm:signalMacro logfile="${build.id}_${sysdef.configuration}.qmake.log" 
                    signal.input="signalRunQMakeInput" phase="compile"/>
            </then>
            <else>
                <echo>Skipping qmake step, because qmake.enabled is not set to true.</echo>
            </else>
        </if>
    </target>

</project>