buildframework/helium/tools/common/templates/ido/ido-ant-fixslashes.xml.ftl
author wbernard
Sun, 10 Oct 2010 15:22:15 +0300
changeset 645 b8d81fa19e7d
parent 1 be27ed110b50
permissions -rw-r--r--
helium_12.0.0-63b64366f9cf

<#--
============================================================================ 
Name        : ido-ant-fixslashes.xml.ftl 
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:

============================================================================
--> 
<?xml version="1.0"?>
<project name="ido-ant-fixslashes" default="all">
    <target name="all">
        <parallel threadCount="${r'$'}{number.of.threads}">
<#assign scanid=1/>
        <#list data?keys as component>
            <sequential>
                  <exec executable="perl" dir="${component}" output="${ant['build.log.dir']}/fixslashes_${ant['ido.name']}.log" append="true" failonerror="false">
                    <arg value="${ant['ido.common.config.dir']}/scripts/fixslashes_test.pl"/>
                    <arg line="-verbose -recursive -dir ${data[component]}"/>
                   </exec>
                  <exec executable="perl" dir="${component}" output="${ant['build.log.dir']}/fixrsg_${ant['ido.name']}.log" append="true" failonerror="false">
                    <arg value="${ant['ido.common.config.dir']}/scripts/fixrsg.pl"/>
                    <arg line="-v ${data[component]}"/>
                   </exec>
            </sequential>
            <#assign scanid=scanid+1/>
        </#list>
        </parallel>
    </target>
</project>