buildframework/helium/tools/iad/iad.ant.xml
changeset 1 be27ed110b50
child 179 d8ac696cc51f
equal deleted inserted replaced
0:044383f39525 1:be27ed110b50
       
     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 <project name="iad">
       
    24     
       
    25     <!-- Target to generate IAD sis packages. -->
       
    26     <target name="makeiadsis">
       
    27         <echo message="Building IAD SIS packages"/>
       
    28         <for delimiter="," param="sysdef.file">
       
    29             <path>
       
    30                 <fileset refid="system.definition.files"/>
       
    31             </path>
       
    32             <sequential>
       
    33                 <exec executable="python" dir="${build.log.dir}" failonerror="true">
       
    34                     <arg value="${helium.dir}/tools/iad/packageiad.py"/>
       
    35                     <arg value="@{sysdef.file}"/>
       
    36                     <arg value="${sysdef.configurations}"/>
       
    37                     <arg value="${build.drive}"/>
       
    38                 </exec>
       
    39             </sequential>
       
    40         </for>
       
    41     </target>
       
    42 </project>