mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
27 lines
726 B
XML
27 lines
726 B
XML
<?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" />
|
|
<javac source="1.6" target="1.6"
|
|
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>
|