buildframework/helium/tools/common/templates/codescanner/codescanner.ant.xml.ftl
changeset 648 d5a8d436d33b
parent 647 53d1ab72f5bc
parent 645 b8d81fa19e7d
child 649 02d78c9f018e
equal deleted inserted replaced
647:53d1ab72f5bc 648:d5a8d436d33b
     1 <#--
       
     2 ============================================================================ 
       
     3 Name        : codescanner.ant.xml.ftl 
       
     4 Part of     : Helium 
       
     5 
       
     6 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     7 All rights reserved.
       
     8 This component and the accompanying materials are made available
       
     9 under the terms of the License "Eclipse Public License v1.0"
       
    10 which accompanies this distribution, and is available
       
    11 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    12 
       
    13 Initial Contributors:
       
    14 Nokia Corporation - initial contribution.
       
    15 
       
    16 Contributors:
       
    17 
       
    18 Description:
       
    19 
       
    20 ============================================================================
       
    21 --> 
       
    22 <?xml version="1.0"?>
       
    23 <project name="codescanner_fmpp" default="all">
       
    24 <#assign dollar="$"/>
       
    25     <target name="all">
       
    26 <#assign scanid=1/>
       
    27 <#assign config=""/>
       
    28         <#list data['inputs'] as input>
       
    29             <exec executable="${data['executable']}">
       
    30                 <arg line="-c ${data['config']}"/>
       
    31                 <arg line="-o${data['output_fmt']}"/>
       
    32                 <arg line="${input}"/>
       
    33                 <arg line="${data['output_dir']}\${data['outputs'][scanid - 1]}"/>
       
    34             </exec>
       
    35             <#assign scanid=scanid+1/>
       
    36         </#list>
       
    37     </target>
       
    38 </project>