mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
24 lines
884 B
XML
24 lines
884 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- this is not a proper build file.
|
|
the proper method is to build with eclipse. -->
|
|
|
|
<project default="blah" name="Create zip for core">
|
|
|
|
<target name="blah">
|
|
|
|
<!-- this makes an assumption that the processing folder is checked out
|
|
at the same level as this folder. not a good assumption. -->
|
|
<zip destfile="../processing/app/src/processing/app/tools/android/processing-core.zip">
|
|
<fileset dir="core/bin" includes="processing/android/core/*.class" />
|
|
<fileset dir="core/bin" includes="processing/android/opengl/*.class" />
|
|
<fileset dir="core/bin" includes="processing/android/xml/*.class" />
|
|
</zip>
|
|
|
|
<!-- copy file to bin folder as well -->
|
|
|
|
<copy file="../processing/app/src/processing/app/tools/android/processing-core.zip" tofile="../processing/app/bin/processing/app/tools/android/processing-core.zip" />
|
|
|
|
</target>
|
|
</project>
|