buildframework/helium/external/helium-antlib/imaker/demo/build.xml
changeset 179 d8ac696cc51f
equal deleted inserted replaced
1:be27ed110b50 179:d8ac696cc51f
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <!-- 
       
     3 ============================================================================ 
       
     4 Name        : build.xml 
       
     5 Part of     : Helium AntLib
       
     6 
       
     7 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     8 All rights reserved.
       
     9 This component and the accompanying materials are made available
       
    10 under the terms of the License "Eclipse Public License v1.0"
       
    11 which accompanies this distribution, and is available
       
    12 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    13 
       
    14 Initial Contributors:
       
    15 Nokia Corporation - initial contribution.
       
    16 
       
    17 Contributors:
       
    18 
       
    19 Description:
       
    20 
       
    21 ============================================================================
       
    22 -->
       
    23 <project name="helium-antlib-imaker-demo" xmlns:hlm="http://www.nokia.com/helium">
       
    24     <description>Helium Antlib imaker demo.</description>
       
    25 
       
    26     <taskdef resource="com/nokia/helium/imaker/ant/antlib.xml" uri="http://www.nokia.com/helium" />
       
    27 
       
    28     <property name="epocroot" location="K:/" />
       
    29     <property name="product" value="?product??" />
       
    30     
       
    31     <hlm:emakeEngine id="imaker.ec">
       
    32         <arg value="--emake-annofile=${epocroot}/imaker.anno.xml"/>
       
    33         <arg value="--emake-autodepend=1"/>
       
    34         <arg value="--emake-annodetail=basic,history,file,waiting"/>                            
       
    35     </hlm:emakeEngine>
       
    36     <hlm:defaultEngine id="imaker.default"/>
       
    37     
       
    38     <property name="imaker.engine" value="default" />
       
    39     
       
    40     <target name="demo-imaker">
       
    41         <hlm:imaker epocroot="${epocroot}" output="${epocroot}/imaker.log" verbose="true" engineRefid="imaker.${imaker.engine}">
       
    42             <hlm:imakerconfigurationset>
       
    43                 <hlm:imakerconfiguration>
       
    44                     <makefileset>
       
    45                         <include name="**/${product}/*ui.mk" />
       
    46                     </makefileset>
       
    47                     <targetset>
       
    48                         <include name="core" />
       
    49                         <include name="langpack_01" />
       
    50                     </targetset>
       
    51                     <variableset>
       
    52                         <variable name="USE_FOTI" value="1" />
       
    53                         <variable name="USE_FOTA" value="1" />
       
    54                     </variableset>
       
    55                     <variablegroup>
       
    56                         <variable name="TYPE" value="rnd" />
       
    57                     </variablegroup>
       
    58                     <variablegroup>
       
    59                         <variable name="TYPE" value="subcon" />
       
    60                     </variablegroup>
       
    61                 </hlm:imakerconfiguration>
       
    62             </hlm:imakerconfigurationset>
       
    63         </hlm:imaker>
       
    64     </target>
       
    65     
       
    66 </project>