mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
add clean-libs target to build.xml files
This commit is contained in:
+15
-13
@@ -3,19 +3,6 @@
|
||||
|
||||
<property environment="env" />
|
||||
|
||||
<target name="clean" description="Clean out the build directories">
|
||||
<delete dir="bin" />
|
||||
<delete dir="bin-test" />
|
||||
<delete file="library/core.jar" />
|
||||
</target>
|
||||
|
||||
<target name="clean-jogl" description="Clean out the JOGL binaries">
|
||||
<delete>
|
||||
<fileset dir="library" includes="gluegen-rt*.jar" />
|
||||
<fileset dir="library" includes="jogl-all*.jar" />
|
||||
</delete>
|
||||
</target>
|
||||
|
||||
<target name="methods-check">
|
||||
<available file="methods/methods.jar" property="methods.present" />
|
||||
</target>
|
||||
@@ -216,4 +203,19 @@
|
||||
<echo message="Wrote source jar to ${source.jar.path}" />
|
||||
</target>
|
||||
|
||||
<target name="clean-libs" description="Clean out the JOGL binary downloads">
|
||||
<delete>
|
||||
<fileset dir="library" includes="gluegen-rt*.jar" />
|
||||
<fileset dir="library" includes="jogl-all*.jar" />
|
||||
</delete>
|
||||
|
||||
<!-- <antcall target="download-jogl" /> -->
|
||||
</target>
|
||||
|
||||
<target name="clean" description="Clean out the build directories">
|
||||
<delete dir="bin" />
|
||||
<delete dir="bin-test" />
|
||||
<delete file="library/core.jar" />
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user