javauis/m3g_qt/build/build.xml
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 11 Jun 2010 13:33:44 +0300
changeset 35 85266cc22c7f
child 40 c6043ea9b06a
child 50 023eef975703
permissions -rw-r--r--
Revision: v2.2.1 Kit: 2010123

<!--
#
# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Nokia Corporation - initial contribution.
#
# Contributors:
#
# Description: 
#
-->

<project name="javam3g" default="deploy" basedir=".">

	<description>
		Builds M3G on Qt.
	</description>
	
  <import file="../../../build/utilities.xml"/>

  <!-- Needed by the utilities.xml. See the description form the utilities.xml
       file -->


  <target name="compile">
    <omj.javac classpath="${impl.cldc.jar}" excludes="**/CDCCompatibilityDelegate.java"/>
  </target>


  <!-- Needed by the utilities.xml. See the description form the utilities.xml
       file -->

  <property name="javah.classnames" 
            value="javax.microedition.m3g.AnimationController,
                   javax.microedition.m3g.AnimationTrack,
                   javax.microedition.m3g.Appearance,
                   javax.microedition.m3g.Background,
                   javax.microedition.m3g.Camera,
                   javax.microedition.m3g.CompositingMode,
                   javax.microedition.m3g.Fog,
                   javax.microedition.m3g.Graphics3D,
                   javax.microedition.m3g.Group,
                   javax.microedition.m3g.Image2D,
                   javax.microedition.m3g.Interface,
                   javax.microedition.m3g.KeyframeSequence,
                   javax.microedition.m3g.Light,
                   javax.microedition.m3g.Loader,
                   javax.microedition.m3g.Material,
                   javax.microedition.m3g.Mesh,
                   javax.microedition.m3g.MorphingMesh,
                   javax.microedition.m3g.Node,
                   javax.microedition.m3g.Object3D,
                   javax.microedition.m3g.Platform,
                   javax.microedition.m3g.PolygonMode,
                   javax.microedition.m3g.SkinnedMesh,
                   javax.microedition.m3g.Sprite3D,
                   javax.microedition.m3g.Texture2D,
                   javax.microedition.m3g.Transform,
                   javax.microedition.m3g.Transformable,
                   javax.microedition.m3g.TriangleStripArray,
                   javax.microedition.m3g.VertexArray,
                   javax.microedition.m3g.VertexBuffer,
                   javax.microedition.m3g.World"/>

  <target name="system.properties">
    <properties>
        microedition.m3g.version=1.1
    </properties>
  </target>
  
    <target name="create.public.api.jar">
      <omj.public.apis includes="javax/microedition/m3g/AnimationController.class,
                                 javax/microedition/m3g/AnimationTrack.class,
                                 javax/microedition/m3g/Appearance.class,
                                 javax/microedition/m3g/Background.class,
                                 javax/microedition/m3g/Camera.class,
                                 javax/microedition/m3g/CompositingMode.class,
                                 javax/microedition/m3g/Fog.class,
                                 javax/microedition/m3g/Graphics3D.class,
                                 javax/microedition/m3g/Group.class,
                                 javax/microedition/m3g/Image2D.class,
                                 javax/microedition/m3g/Interface.class,
                                 javax/microedition/m3g/KeyframeSequence.class,
                                 javax/microedition/m3g/Light.class,
                                 javax/microedition/m3g/Loader.class,
                                 javax/microedition/m3g/Material.class,
                                 javax/microedition/m3g/Mesh.class,
                                 javax/microedition/m3g/MorphingMesh.class,
                                 javax/microedition/m3g/Node.class,
                                 javax/microedition/m3g/Object3D.class,
                                 javax/microedition/m3g/Platform.class,
                                 javax/microedition/m3g/PolygonMode.class,
                                 javax/microedition/m3g/SkinnedMesh.class,
                                 javax/microedition/m3g/Sprite3D.class,
                                 javax/microedition/m3g/Texture2D.class,
                                 javax/microedition/m3g/Transform.class,
                                 javax/microedition/m3g/Transformable.class,
                                 javax/microedition/m3g/TriangleStripArray.class,
                                 javax/microedition/m3g/VertexArray.class,
                                 javax/microedition/m3g/VertexBuffer.class,
                                 javax/microedition/m3g/World.class"/>
  </target>

</project>