587
|
1 |
<?xml version="1.0"?>
|
|
2 |
<!--
|
|
3 |
============================================================================
|
|
4 |
Name : build.xml
|
|
5 |
Part of : Helium AntLib
|
|
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="build-common-macros" xmlns:ivy="antlib:org.apache.ivy.ant" xmlns:au="org.apache.ant.antunit">
|
|
24 |
|
|
25 |
<dirname property="builder.dir" file="${ant.file.build-common-macros}/../" />
|
|
26 |
<property name="build.temp.dir" location="${builder.dir}/../build" />
|
|
27 |
<property name="components.temp.dir" location="${build.temp.dir}/components" />
|
|
28 |
<property name="module.temp.dir" location="${components.temp.dir}/${ant.project.name}/" />
|
|
29 |
<property name="lib.dir" location="${module.temp.dir}/lib" />
|
|
30 |
<property name="classes.dir" location="${module.temp.dir}/classes" />
|
|
31 |
<property name="module.bin.dir" location="${module.temp.dir}/bin" />
|
|
32 |
<property name="antunit.result.dir" location="${module.temp.dir}/xunit/antunit" />
|
|
33 |
<property name="junit.result.dir" location="${module.temp.dir}/xunit/junit" />
|
|
34 |
<property name="test.temp.dir" location="${module.temp.dir}/test/temp" />
|
|
35 |
<property name="src.dir" location="${basedir}/src" />
|
|
36 |
<property name="ivy.file" location="${basedir}/ivy.xml" />
|
|
37 |
<property name="jar.file" location="${module.bin.dir}/${ant.project.name}.jar" />
|
|
38 |
<property name="module.version.target" value="1.0" />
|
|
39 |
<property name="ivy.settings.dir" location="${basedir}/../../settings" />
|
|
40 |
<path id="lib.path.id">
|
|
41 |
<fileset dir="${lib.dir}" />
|
|
42 |
</path>
|
|
43 |
</project>
|