Revamped bundle stuff to put all actions and classes in one top-level

metadata bundle and just the components in separate component bundles.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1058 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-02-19 22:10:30 +00:00
parent ade0080446
commit cbcf5d217e
6 changed files with 33 additions and 47 deletions
+10 -13
View File
@@ -81,22 +81,19 @@
<taskdef name="cbundle"
classname="com.threerings.cast.bundle.tools.ComponentBundlerTask"/>
<!-- build the pirate metadata and component bundles -->
<metabundle actiondef="${cbundle.dir}/pirate/actions.xml"
classdef="${cbundle.dir}/pirate/classes.xml"
target="${cbundle.dir}/pirate/metadata.jar"/>
<!-- build the metadata bundles -->
<metabundle actiondef="${cbundle.dir}/actions.xml"
classdef="${cbundle.dir}/classes.xml"
target="${cbundle.dir}/metadata.jar"/>
<!-- build the component bundles -->
<cbundle target="${cbundle.dir}/pirate/components.jar"
mapfile="${cbundle.dir}/pirate/components.map">
mapfile="${cbundle.dir}/components.map">
<fileset dir="${cbundle.dir}/pirate" includes="**/*.png"/>
</cbundle>
<!-- build the ship metadata and component bundles -->
<metabundle actiondef="${cbundle.dir}/ship/actions.xml"
classdef="${cbundle.dir}/ship/classes.xml"
target="${cbundle.dir}/ship/metadata.jar"/>
<cbundle target="${cbundle.dir}/ship/components.jar"
mapfile="${cbundle.dir}/ship/components.map">
<fileset dir="${cbundle.dir}/ship" includes="**/*.png"/>
<cbundle target="${cbundle.dir}/vessel/components.jar"
mapfile="${cbundle.dir}/components.map">
<fileset dir="${cbundle.dir}/vessel" includes="**/*.png"/>
</cbundle>
</target>