mirror of
https://github.com/processing/processing4.git
synced 2026-01-25 01:11:06 +01:00
31 lines
1005 B
XML
31 lines
1005 B
XML
<?xml version="1.0"?>
|
|
<project name="Processing Serial Library" default="build">
|
|
<property name="core.path" location="../../../core/library/core.jar" />
|
|
|
|
<target name="compile" description="Compile sources">
|
|
<condition property="core-built">
|
|
<available file="${core.path}" />
|
|
</condition>
|
|
<fail unless="core-built" message="Please build the core library first and make sure it sits in ${core.path}" />
|
|
|
|
<mkdir dir="bin" />
|
|
<javac source="17"
|
|
target="17"
|
|
srcdir="src" destdir="bin"
|
|
encoding="UTF-8"
|
|
includeAntRuntime="false"
|
|
classpath="${core.path}; library/jssc.jar"
|
|
nowarn="true">
|
|
</javac>
|
|
</target>
|
|
|
|
<target name="build" depends="compile" description="Build serial library">
|
|
<jar basedir="bin" destfile="library/serial.jar" />
|
|
</target>
|
|
|
|
<target name="clean" description="Clean the build directories">
|
|
<delete dir="bin" />
|
|
<delete file="library/serial.jar" />
|
|
</target>
|
|
</project>
|