mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 21:29:17 +01:00
29 lines
848 B
XML
29 lines
848 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- This isn't yet completely baked. You might call it half. -->
|
|
|
|
<project default="build" name="Create .zip file for core">
|
|
|
|
<property environment="env" />
|
|
|
|
<target name="build" if="env.ANDROID_SDK">
|
|
<mkdir dir="core/bin" />
|
|
<javac encoding="UTF-8"
|
|
includeAntRuntime="false"
|
|
bootclasspath="${env.ANDROID_SDK}/platforms/android-2.0/android.jar"
|
|
srcdir="core/src" destdir="core/bin"/>
|
|
|
|
<delete file="core.zip" />
|
|
<zip destfile="core.zip">
|
|
<fileset dir="core/bin" includes="processing/core/*.class" />
|
|
<fileset dir="core/bin" includes="processing/xml/*.class" />
|
|
</zip>
|
|
</target>
|
|
|
|
<target name="clean" if="env.ANDROID_SDK"
|
|
description="Clean out the build directories">
|
|
<delete dir="core/bin" />
|
|
<delete file="core.zip" />
|
|
</target>
|
|
</project>
|