Custom Build Script.

This commit is contained in:
Joe Bowser 2009-11-18 15:43:59 -08:00
parent 423368595d
commit 43b3090c30

View File

@ -58,6 +58,23 @@
targets are used.
-->
<setup import="false"/>
<setup />
<!-- Grab the files, concatenate them and shove them in the
assets directory -->
<target name="move_files">
<concat destfile="assets/www/phonegap.js">
<fileset dir="../js" includes="phonegap.js.base" />
<fileset dir="../js" includes="*.js" />
</concat>
</target>
<target name="phonegap_debug" depends="move_files, debug">
</target>
<target name="phonegap_release" depends="move_files, release">
</target>
</project>