You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.2 KiB
54 lines
1.2 KiB
14 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<!--
|
||
|
-
|
||
|
- ant build file for jMonkeyEngine Android Renderer
|
||
|
-
|
||
|
- author: Anton Yudin
|
||
|
- created: Sun Nov 7 22:38:27 EST 2010
|
||
|
-
|
||
|
-->
|
||
|
|
||
|
<project name="jMonkeyEngine Android Renderer" default="dist" basedir=".">
|
||
|
|
||
|
|
||
|
<path id="classpath">
|
||
|
<pathelement path="lib/android/android.jar"/>
|
||
|
<pathelement path="dist/jMonkeyEngine3.jar"/>
|
||
|
</path>
|
||
|
|
||
|
<target name="initialize">
|
||
|
<mkdir dir="build/android"/>
|
||
|
</target>
|
||
|
|
||
|
<target name="compile" depends="initialize">
|
||
|
<javac
|
||
|
target="1.6"
|
||
|
encoding="UTF-8"
|
||
|
debug="true"
|
||
|
deprecation="on"
|
||
|
srcdir="src/android"
|
||
|
destdir="build/android"
|
||
|
classpathref="classpath"
|
||
|
excludes="**/OGLESRenderer.java,**/TestsActivity.java,**/AboutActivity.java"
|
||
|
/>
|
||
|
</target>
|
||
|
|
||
|
<target name="dist" depends="compile">
|
||
|
<jar
|
||
|
jarfile="build/jmonkeyengine3-android-renderer.jar"
|
||
|
basedir="build/android"
|
||
|
/>
|
||
|
<jar
|
||
|
jarfile="build/jmonkeyengine3-android-tests.jar"
|
||
|
basedir="build/testclasses"
|
||
|
/>
|
||
|
<jar
|
||
|
jarfile="build/jmonkeyengine3-android-dist.jar"
|
||
|
basedir="build/classes"
|
||
|
excludes="com/jme3/system/JmeSystem*"
|
||
|
/>
|
||
|
</target>
|
||
|
|
||
|
</project>
|