Files
cappuccino/Tools/NewApplication/build.xml
T
Francisco Ryan Tolmasky I a97bb72800 Initial commit.
Reviewed by francisco, ross and tom.
2008-09-04 03:52:20 -07:00

30 lines
773 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.Starter}/NewApplication" />
<copy todir = "${Build.Cappuccino.Starter}/NewApplication">
<filelist refid = "NewApplication Files" />
</copy>
</target>
</project>