Files
cappuccino/Tools/NewApplication/build.xml
T
Tom Robinson b1c8265f4c Changed "steam" to "steam build" and added "steam create"
Updated ant scripts to reflect steam changes.
Minor update to objj
2008-10-05 20:00:31 -07:00

34 lines
986 B
XML

<?xml version = "1.0"?>
<project name = "NewApplication">
<import file = "../../common.xml" />
<filelist id = "NewApplication Files" dir = ".">
<file name = "main.j" />
<file name = "AppController.j" />
<file name = "Info.plist" />
<file name = "index.html" />
</filelist>
<target name = "clean">
</target>
<target name = "build">
</target>
<target name = "release" depends = "build">
<antcall target = "prepare-release"/>
<mkdir dir = "${Build.Cappuccino.Tools.Lib}/NewApplication" />
<copy todir = "${Build.Cappuccino.Tools.Lib}/NewApplication">
<filelist refid = "NewApplication Files" />
</copy>
<mkdir dir = "${Build.Cappuccino.Starter}/NewApplication" />
<copy todir = "${Build.Cappuccino.Starter}/NewApplication">
<filelist refid = "NewApplication Files" />
</copy>
</target>
</project>