Files
processing4/core/methods/build.xml
2015-01-21 19:14:15 -05:00

56 lines
1.7 KiB
XML

<project name="methods" default="dist">
<target name="compile">
<!-- Check for JDT compiler, since this is likely a PDE build. Using
it allows us to build the PDE with only a JRE on Windows and Linux.
So that the core can be built independently of the PDE,
use javac (the "modern" compiler) if ecj is not present. -->
<property name="jdt.jar" value="../../java/mode/org.eclipse.jdt.core.jar" />
<condition property="build.compiler"
value="org.eclipse.jdt.core.JDTCompilerAdapter"
else="modern">
<available file="${jdt.jar}" />
</condition>
<!--<echo message="compiler is ${build.compiler}" />-->
<mkdir dir="bin" />
<javac source="1.7"
target="1.7"
srcdir="src"
destdir="bin"
debug="true"
includeantruntime="true"
nowarn="true">
<!-- kinda gross, but if not using the JDT, this just ignored anyway -->
<compilerclasspath path="${jdt.jar};
../../java/mode/jdtCompilerAdapter.jar" />
</javac>
</target>
<target name="dist" depends="compile">
<jar basedir="bin" destfile="methods.jar" />
</target>
<target name="demo" depends="dist">
<mkdir dir="demo" />
<copy todir="demo">
<fileset file="../src/processing/core/PApplet.java" />
<fileset file="../src/processing/core/PGraphics.java" />
<fileset file="../src/processing/core/PImage.java" />
</copy>
<taskdef name="methods"
classname="PAppletMethods"
classpath="methods.jar" />
<methods dir="demo"/>
</target>
<target name="clean">
<delete dir="bin" />
<delete file="methods.jar" />
</target>
</project>