Build script copies glsl shaders to android-core

This commit is contained in:
codeanticode
2012-01-29 20:22:11 +00:00
parent 61d5899b52
commit 7400b7d883
+8
View File
@@ -25,6 +25,14 @@
bootclasspath="${env.ANDROID_SDK}/platforms/android-8/android.jar"
srcdir="src" destdir="bin" />
<!-- Copy the shaders to the bin folder.
Eclipse does this automatically. -->
<copy todir="bin">
<fileset dir="src">
<include name="processing/core/*.glsl" />
</fileset>
</copy>
<jar basedir="bin" destfile="../android-core.zip" />
</target>