buildframework/helium/tools/iad/iad.ant.xml
changeset 2 39c28ec933dd
equal deleted inserted replaced
1:820b22e13ff1 2:39c28ec933dd
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <!-- 
       
     3 ============================================================================ 
       
     4 Name        : iad.ant.xml 
       
     5 Part of     : Helium 
       
     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 <!--* @package iad -->
       
    24 <project name="iad">
       
    25     <description>
       
    26         Targets related to iad
       
    27     </description>
       
    28     <!-- Target to generate IAD sis packages. -->
       
    29     <target name="makeiadsis">
       
    30         <echo message="Building IAD SIS packages"/>
       
    31         <for delimiter="," param="sysdef.file">
       
    32             <path>
       
    33                 <fileset refid="system.definition.files"/>
       
    34             </path>
       
    35             <sequential>
       
    36                 <exec executable="python" dir="${build.log.dir}" failonerror="true">
       
    37                     <arg line="-m packageiad"/>
       
    38                     <arg value="@{sysdef.file}"/>
       
    39                     <arg value="${sysdef.configurations}"/>
       
    40                     <arg value="${build.drive}"/>
       
    41                 </exec>
       
    42             </sequential>
       
    43         </for>
       
    44     </target>
       
    45 </project>