Files
cappuccino/AppKit/Tools/blend/build.xml
T
2009-03-15 19:36:24 -07:00

24 lines
583 B
XML

<?xml version = "1.0"?>
<project name = "blend" default = "build" basedir = "." >
<import file = "../../../common.xml" />
<import file = "${env.OBJJ_LIB}/steam/steam.xml" />
<target name = "clean" depends = "steam-uptodate">
<steam-build>
<arg line = "-f blend.steam -c ${Configuration} clean" />
</steam-build>
</target>
<target name = "build" depends = "steam-uptodate">
<steam-build>
<arg line = "-f blend.steam -c ${Configuration}" />
</steam-build>
</target>
</project>