mirror of
https://github.com/processing/processing4.git
synced 2026-01-27 10:21:26 +01:00
remove jdt.compiler.jar as javac engine from subprojects
This commit is contained in:
@@ -6,24 +6,22 @@
|
||||
<delete file="library/io.jar" />
|
||||
</target>
|
||||
|
||||
<property name="core.path" location="../../../core/library/core.jar" />
|
||||
|
||||
<target name="compile" description="Compile sources">
|
||||
<condition property="core-built">
|
||||
<available file="../../../core/library/core.jar" />
|
||||
<available file="${core.path}" />
|
||||
</condition>
|
||||
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/library/core.jar" />
|
||||
<fail unless="core-built" message="Please build the core library first and make sure it is located at ${core.path}" />
|
||||
|
||||
<mkdir dir="bin" />
|
||||
<javac source="11"
|
||||
target="11"
|
||||
srcdir="src" destdir="bin"
|
||||
encoding="UTF-8"
|
||||
includeAntRuntime="false"
|
||||
classpath="../../../core/library/core.jar"
|
||||
nowarn="true"
|
||||
compiler="org.eclipse.jdt.core.JDTCompilerAdapter">
|
||||
<compilerclasspath path="../../mode/org.eclipse.jdt.core.jar;
|
||||
../../mode/jdtCompilerAdapter.jar" />
|
||||
</javac>
|
||||
target="11"
|
||||
srcdir="src" destdir="bin"
|
||||
encoding="UTF-8"
|
||||
includeAntRuntime="false"
|
||||
classpath="${core.path}"
|
||||
nowarn="true" />
|
||||
</target>
|
||||
|
||||
<target name="build" depends="compile" description="Build I/O library">
|
||||
|
||||
1
java/libraries/io/library/.gitignore
vendored
Normal file
1
java/libraries/io/library/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
io.jar
|
||||
Reference in New Issue
Block a user