javauis/m2g_qt/build/build.xml
changeset 80 d6dafc5d983f
equal deleted inserted replaced
78:71ad690e91f5 80:d6dafc5d983f
       
     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="javam2g" default="deploy" 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   <target name="compile">
       
    27     <omj.javac classpath="${classpath}:${impl.cldc.jar}"/>
       
    28   </target>-->
       
    29 
       
    30 
       
    31   <!-- Needed by the utilities.xml. See the description form the utilities.xml
       
    32        file -->
       
    33 
       
    34   <property name="javah.classnames" 
       
    35             value="com.nokia.microedition.m2g.M2GDocument,
       
    36                    com.nokia.microedition.m2g.M2GSVGPath,
       
    37                    com.nokia.microedition.m2g.M2GSVGSVGElement,
       
    38                    com.nokia.microedition.m2g.M2GManager,
       
    39                    com.nokia.microedition.m2g.M2GScalableGraphics,
       
    40                    com.nokia.microedition.m2g.M2GSVGAnimationElement,
       
    41                    com.nokia.microedition.m2g.M2GSVGElement,
       
    42                    com.nokia.microedition.m2g.M2GSVGImage,
       
    43 				   				 com.nokia.microedition.m2g.M2GRunnableQt"/>
       
    44 
       
    45   <target name="system.properties">
       
    46     <properties>
       
    47         microedition.m2g.svg.baseProfile=tiny
       
    48         microedition.m2g.svg.version=1.1
       
    49         microedition.m2g.version=1.1
       
    50     </properties>
       
    51   </target>
       
    52   
       
    53   <target name="create.public.api.jar">
       
    54   <omj.public.apis includes="javax/microedition/m2g/ExternalResourceHandler.class,
       
    55                                  javax/microedition/m2g/ScalableGraphics.class,
       
    56                                  javax/microedition/m2g/ScalableImage.class,
       
    57                                  javax/microedition/m2g/SVGAnimator.class,
       
    58                                  javax/microedition/m2g/SVGEventListener.class,
       
    59                                  javax/microedition/m2g/SVGImage.class"/>
       
    60   </target>
       
    61 
       
    62 
       
    63 </project>
       
    64