Files
cappuccino/AppKit/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

60 lines
1.8 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-build>
<arguments>
<arg line = "-f AppKit.steam -c ${Configuration} clean" />
</arguments>
</steam-build>
</target>
<target name = "build">
<steam-build>
<arguments>
<arg line = "-f AppKit.steam -c ${Configuration} -t AppKit" />
</arguments>
</steam-build>
<steam-build>
<arguments>
<arg line = "-f AppKit.steam -c ${Configuration} -t AppKit-Rhino" />
</arguments>
</steam-build>
<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.Tools.Lib.Frameworks}/AppKit">
<fileset dir = "${Build}/${Configuration}/AppKit" />
</copy>
<copy todir = "${Build.Cappuccino.Tools.Lib.Frameworks-Rhino}/AppKit">
<fileset dir = "${Build}/${Configuration}/AppKit-Rhino" />
</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>