mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 05:27:03 +00:00
30 lines
773 B
XML
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> |