2010-04-21 03:58:57 +02:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project name="Processing Core" default="build">
|
|
|
|
|
|
|
|
<target name="clean" description="Clean out the build directories">
|
|
|
|
<delete dir="bin" />
|
|
|
|
<delete file="core.jar" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="compile" description="Compile">
|
|
|
|
<taskdef name="methods"
|
|
|
|
classname="PAppletMethods"
|
|
|
|
classpath="methods/methods.jar" />
|
|
|
|
<methods dir="${basedir}/src/processing/core" />
|
|
|
|
|
|
|
|
<mkdir dir="bin" />
|
2013-01-28 16:33:18 +01:00
|
|
|
<javac source="1.6" target="1.6"
|
2010-04-21 03:58:57 +02:00
|
|
|
encoding="UTF-8"
|
|
|
|
includeAntRuntime="false"
|
|
|
|
srcdir="src" destdir="bin"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build" depends="compile" description="Build core library">
|
|
|
|
<jar basedir="bin" destfile="core.jar" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|