mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Move vaqua to download on demand instead of staying binary in repo.
This commit is contained in:
+12
-2
@@ -1,12 +1,22 @@
|
||||
<?xml version="1.0"?>
|
||||
<project name="Processing PDE" default="build">
|
||||
|
||||
<property name="vaqua.url" value="https://violetlib.org/release/vaqua" />
|
||||
|
||||
<target name="clean" description="Clean the build directories">
|
||||
<delete dir="bin" />
|
||||
<delete file="pde.jar" />
|
||||
</target>
|
||||
|
||||
<target name="compile" description="Compile sources">
|
||||
<target name="download-vaqua">
|
||||
|
||||
<get dest="lib" usetimestamp="true">
|
||||
<url url="${vaqua.url}/7/VAqua7.jar" />
|
||||
</get>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="compile" description="Compile sources" depends="download-vaqua">
|
||||
<condition property="core-built">
|
||||
<available file="../core/library/core.jar" />
|
||||
</condition>
|
||||
@@ -40,7 +50,7 @@
|
||||
lib/ant-launcher.jar;
|
||||
lib/jna.jar;
|
||||
lib/jna-platform.jar;
|
||||
lib/vaqua7.jar"
|
||||
lib/VAqua7.jar"
|
||||
debug="on"
|
||||
nowarn="true">
|
||||
<src path="src" />
|
||||
|
||||
Binary file not shown.
+1
-1
@@ -424,7 +424,7 @@
|
||||
<include name="app/lib/jna-platform.jar" />
|
||||
<include name="app/lib/ant.jar" />
|
||||
<include name="app/lib/ant-launcher.jar" />
|
||||
<include name="app/lib/vaqua7.jar" />
|
||||
<include name="app/lib/VAqua7.jar" />
|
||||
</fileset>
|
||||
|
||||
<target name="build" description="Build Processing.">
|
||||
|
||||
+1
-1
@@ -54,7 +54,7 @@
|
||||
<pathelement location="../app/lib/apple.jar" />
|
||||
<pathelement location="../app/lib/jna.jar" />
|
||||
<pathelement location="../app/lib/jna-platform.jar" />
|
||||
<pathelement location="../app/lib/vaqua7.jar" />
|
||||
<pathelement location="../app/lib/VAqua7.jar" />
|
||||
|
||||
<pathelement location="mode/antlr-4.7.2-complete.jar" />
|
||||
<pathelement location="mode/classpath-explorer-1.0.jar" />
|
||||
|
||||
Reference in New Issue
Block a user