mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
24 lines
583 B
XML
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>
|