equal
deleted
inserted
replaced
|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <!-- |
|
3 ============================================================================ |
|
4 Name : build.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="helium-build" default="help" xmlns:au="org.apache.ant.antunit" xmlns:hlm="http://www.nokia.com/helium"> |
|
24 <description> |
|
25 Helium targets to build helium itself. |
|
26 </description> |
|
27 <property environment="env"/> |
|
28 |
|
29 <property name="build.drive" location="${env.TEMP}/helium/temp_drive"/> |
|
30 <mkdir dir="${build.drive}/"/> |
|
31 |
|
32 <property file="${helium.dir}/config/version.txt"/> |
|
33 <property name="release.label" value="${helium.version}"/> |
|
34 |
|
35 <import file="build-jar.ant.xml"/> |
|
36 <import file="helium.ant.xml"/> |
|
37 <import file="tools/startup/antserver/antserver.ant.xml"/> |
|
38 |
|
39 </project> |
|
40 |