Files
cappuccino/Foundation/build.xml
T
2008-12-04 16:29:42 -08:00

25 lines
674 B
XML

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