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

46 lines
1.3 KiB
XML

<?xml version = "1.0"?>
<project name = "AppKit" default = "build" basedir = "." >
<import file = "../common.xml" />
<import file = "${environment.OBJJ_HOME}/lib/steam.xml" />
<target name = "clean">
<steam>
<arguments>
<arg line = "-f AppKit.steam -c ${Configuration} clean" />
</arguments>
</steam>
</target>
<target name = "build">
<steam>
<arguments>
<arg line = "-f AppKit.steam -c ${Configuration}" />
</arguments>
</steam>
<copy file = "../LICENSE" todir = "${Build}/${Configuration}/AppKit" />
</target>
<target name = "release" depends = "build">
<antcall target = "prepare-release" />
<copy todir = "${Build.Cappuccino.Tools.Frameworks}/AppKit">
<fileset dir = "${Build}/${Configuration}/AppKit" />
</copy>
<copy todir = "${Build.Cappuccino.Starter.Frameworks}/AppKit" >
<fileset dir = "${Build}/${Configuration}/AppKit" />
</copy>
<copy todir = "${Build.Cappuccino.Starter}/NewApplication/Frameworks/AppKit" >
<fileset dir = "${Build}/${Configuration}/AppKit" />
</copy>
</target>
</project>