buildframework/helium/tests/minibuilds/broom/build.xml
changeset 1 be27ed110b50
child 628 7c4a911dc066
equal deleted inserted replaced
0:044383f39525 1:be27ed110b50
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <!-- 
       
     3 ============================================================================ 
       
     4 Name        : 
       
     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="minibuild.compile" default="minibuild" xmlns:au="org.apache.ant.antunit" xmlns:hlm="http://www.nokia.com/helium" basedir=".">
       
    24     <property environment="env"/>
       
    25 	<dirname property="config.dir" file="${ant.file.minibuild.compile}"/>
       
    26 
       
    27     <!-- Enable Helium internal assertion checking. -->
       
    28     <property name="hlm.enable.asserts" value="1" />
       
    29         
       
    30     <property name="build.name" value="minibuild_broom" />
       
    31     <property name="build.family" value="cleaner" />
       
    32     <property name="major.version" value="0" />
       
    33     <property name="minor.version" value="0" />
       
    34     <property name="publish.root.dir" location="${build.drive}/release"/>
       
    35 	<property name="ci.cleanup.env.dir" location="E:/bb/minibuild-broom/trigger"/>
       
    36 
       
    37 	<target name="create-ci-dir">
       
    38 		<mkdir dir="${ci.cleanup.env.dir}"/>
       
    39 	</target>
       
    40 	
       
    41 	<target name="mini-build" depends="create-ci-dir,delete-folders-from-list"/>
       
    42 	
       
    43 	<import file="${helium.dir}/helium.ant.xml"/>
       
    44 	
       
    45 </project>
       
    46 
       
    47