working on JavaFX paths and more; export acting weird

This commit is contained in:
Ben Fry
2021-06-20 14:21:57 -04:00
parent 9cdd8e14a6
commit 2eb872677e
2 changed files with 23 additions and 17 deletions
+17 -15
View File
@@ -137,27 +137,29 @@
</copy>
<!-- in some cases, pde.jar was not getting built
https://github.com/processing/processing/issues/1792 -->
https://github.com/processing/processing/issues/1792 -->
<delete file="pde.jar" />
<!-- env used to set classpath below -->
<property environment="env" />
<javac source="11"
target="11"
destdir="bin"
excludes="**/tools/format/**"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/library/core.jar;
../core/apple.jar;
lib/ant.jar;
lib/ant-launcher.jar;
lib/jna.jar;
lib/jna-platform.jar;
lib/VAqua9.jar"
debug="on"
nowarn="true">
target="11"
destdir="bin"
excludes="**/tools/format/**"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/library/core.jar;
../core/apple.jar;
lib/ant.jar;
lib/ant-launcher.jar;
lib/jna.jar;
lib/jna-platform.jar;
lib/VAqua9.jar"
debug="on"
nowarn="true">
<compilerarg value="-Xlint:unchecked" />
<compilerarg value="-Xlint:deprecation" />
<src path="src" />
</javac>
</target>
+6 -2
View File
@@ -7,7 +7,10 @@
<target name="clean" description="Clean the build directories">
<delete dir="bin" />
<delete file="${library.path}/javafx.jar" />
<!-- <delete file="${library.path}/javafx.jar" /> -->
<!-- Remove everything, which includes javafx.jar and files extracted from
GluonHQ downloads, but those can be reproduced from the downloaded zips. -->
<delete dir="${library.path}" />
</target>
<condition property="fx.unavailable" value="true">
@@ -129,10 +132,11 @@
</unzip>
</target>
<!--
<target name="clean-javafx">
<delete dir="." includes="**/javafx-*-sdk*.zip" />
<delete dir="${library.path}" />
</target>
-->
<target name="download-javafx">
<property name="gluon.version" value="16" />