equal
deleted
inserted
replaced
|
1 @echo off |
|
2 |
|
3 rem |
|
4 rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
5 rem All rights reserved. |
|
6 rem This component and the accompanying materials are made available |
|
7 rem under the terms of the License "Eclipse Public License v1.0" |
|
8 rem which accompanies this distribution, and is available |
|
9 rem at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
10 rem |
|
11 rem Initial Contributors: |
|
12 rem Nokia Corporation - initial contribution. |
|
13 rem |
|
14 rem Contributors: |
|
15 rem |
|
16 rem Description: |
|
17 rem |
|
18 |
|
19 setlocal |
|
20 |
|
21 REM Set the Helium location |
|
22 REM Make sure the path is not ending with a backslash! |
|
23 if not defined HELIUM_HOME ( |
|
24 set HELIUM_HOME_TEMP=%~dp0 |
|
25 ) |
|
26 if not defined HELIUM_HOME ( |
|
27 set HELIUM_HOME=%HELIUM_HOME_TEMP:~0,-1% |
|
28 ) |
|
29 |
|
30 set HLM_DISABLE_INTERNAL_DATA=1 |
|
31 |
|
32 set JEP_HOME=%HELIUM_HOME%\external\jep_1.6_2.5 |
|
33 |
|
34 set ANT_ARGS=-lib "%HELIUM_HOME%\external\antlibs" -lib "%JEP_HOME%" -logger org.apache.tools.ant.DefaultLogger |
|
35 |
|
36 hlm -f build-jar.ant.xml jar |
|
37 |
|
38 |
|
39 endlocal |
|
40 |