equal
deleted
inserted
replaced
|
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 |
|
20 <project name="javacomm" default="deploy" basedir="."> |
|
21 <description> |
|
22 Builds GCF CommConnection |
|
23 </description> |
|
24 |
|
25 |
|
26 <import file="../../../build/utilities.xml"/> |
|
27 |
|
28 <!-- Needed by the utilities.xml. See the description form the utilities.xml |
|
29 file --> |
|
30 |
|
31 <property name="javah.classnames" |
|
32 value="com.nokia.mj.impl.comm.CommConnectionImpl, |
|
33 com.nokia.mj.impl.properties.comm.DynamicPropertyHandler "/> |
|
34 |
|
35 <!-- Setting all classes to be visible to everybody. TODO: Check is it correct to publish all the classes --> |
|
36 |
|
37 <target name="system.properties"> |
|
38 <properties> |
|
39 microedition.commports=:comm.DynamicPropertyHandler |
|
40 </properties> |
|
41 </target> |
|
42 |
|
43 <target name="create.public.api.jar"> |
|
44 <omj.public.apis includes="javax/microedition/io/CommConnection.class"/> |
|
45 </target> |
|
46 |
|
47 </project> |
|
48 |