mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 05:27:03 +00:00
37 lines
846 B
XML
37 lines
846 B
XML
<project>
|
|
|
|
<!-- Steam -->
|
|
|
|
<macrodef name = "steam-build">
|
|
|
|
<element name = "arguments" optional = "true" implicit = "true"/>
|
|
|
|
<sequential>
|
|
<exec executable = "steam">
|
|
<arg value = "build"/>
|
|
<arguments/>
|
|
</exec>
|
|
</sequential>
|
|
|
|
</macrodef>
|
|
|
|
<macrodef name = "steam-inline-bundle">
|
|
|
|
<attribute name = "bundle" />
|
|
|
|
<element name = "arguments" optional = "true" implicit = "true"/>
|
|
|
|
<sequential>
|
|
<exec executable = "steam">
|
|
|
|
<arg value = "inline-bundle" />
|
|
<arg value = "@{bundle}" />
|
|
|
|
<arguments/>
|
|
|
|
</exec>
|
|
</sequential>
|
|
|
|
</macrodef>
|
|
|
|
</project> |