|
1 <!-- |
|
2 # |
|
3 # Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 # All rights reserved. |
|
5 # This component and the accompanying materials are made available |
|
6 # under the terms of "Eclipse Public License v1.0" |
|
7 # which accompanies this distribution, and is available |
|
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 # |
|
10 # Initial Contributors: |
|
11 # Nokia Corporation - initial contribution. |
|
12 # |
|
13 # Contributors: |
|
14 # |
|
15 # Description: |
|
16 # |
|
17 --> |
|
18 |
|
19 <project name="javamidpruntime" default="deploy.dual" basedir="."> |
|
20 |
|
21 <import file="../../../../build/utilities.xml"/> |
|
22 |
|
23 <!-- Needed by the utilities.xml. See the description form the utilities.xml |
|
24 file --> |
|
25 |
|
26 <property name="javah.classnames" |
|
27 value="com.nokia.mj.impl.rt.midp.DrmUtil, |
|
28 com.nokia.mj.impl.rt.midp.MidletLifeCycle, |
|
29 com.nokia.mj.impl.rt.midp.MemoryLogger, |
|
30 com.nokia.mj.impl.rt.midp.RuntimeErrorDialog, |
|
31 com.nokia.mj.impl.rt.main.Main, |
|
32 javax.microedition.midlet.MIDlet"/> |
|
33 |
|
34 <target name="system.properties"> |
|
35 <properties> |
|
36 microedition.hostname=localhost |
|
37 microedition.jtwi.version=1.0 |
|
38 microedition.msa.version=1.1-SUBSET |
|
39 microedition.profiles=MIDP-2.1 |
|
40 </properties> |
|
41 </target> |
|
42 |
|
43 <target name="create.public.api.jar"> |
|
44 <omj.public.apis includes="javax/microedition/midlet/MIDlet.class, |
|
45 javax/microedition/midlet/MIDletStateChangeException.class"/> |
|
46 </target> |
|
47 |
|
48 <!-- Setting all classes to be visible to everybody --> |
|
49 <target name="create.internal.api.jar"> |
|
50 <omj.internal.apis includes="com/nokia/mj/impl/rt/utils/ExtensionUtil.class"/> |
|
51 </target> |
|
52 |
|
53 </project> |