52 lines
1.9 KiB
XML
52 lines
1.9 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
build commands
|
|
[RadiantPath]: path to Radiant .. C:\Program Files\Gtkradiant
|
|
[EnginePath]: path to the engine .. C:\quake3\ C:\Program Files\Quake III Arena\ /usr/local/games/quake3/
|
|
-->
|
|
<project version="2.0">
|
|
<var name="csg">"[RadiantPath]ZHLT/hlcsg" -wadinclude [EnginePath]valve/common-hydra.wad</var>
|
|
<var name="bsp">"[RadiantPath]/ZHLT/hlbsp"</var>
|
|
<var name="vis">"[RadiantPath]/ZHLT/hlvis"</var>
|
|
<var name="rad">"[RadiantPath]/ZHLT/hlrad"</var>
|
|
<build name="CSG, BSP">
|
|
<command>[csg] "[MapFile]"</command>
|
|
<command>[bsp] "[MapFile]"</command>
|
|
</build>
|
|
<build name="CSG, BSP, VIS -fast">
|
|
<command>[csg] "[MapFile]"</command>
|
|
<command>[bsp] "[MapFile]"</command>
|
|
<command>[vis] -fast "[MapFile]"</command>
|
|
</build>
|
|
<build name="CSG, BSP, VIS -fast, RAD">
|
|
<command>[csg] "[MapFile]"</command>
|
|
<command>[bsp] "[MapFile]"</command>
|
|
<command>[vis] -fast "[MapFile]"</command>
|
|
<command>[rad] "[MapFile]"</command>
|
|
</build>
|
|
<build name="CSG, BSP, VIS -fast, RAD -sparse">
|
|
<command>[csg] "[MapFile]"</command>
|
|
<command>[bsp] "[MapFile]"</command>
|
|
<command>[vis] -fast "[MapFile]"</command>
|
|
<command>[rad] -sparse "[MapFile]"</command>
|
|
</build>
|
|
<build name="CSG, BSP, VIS">
|
|
<command>[csg] "[MapFile]"</command>
|
|
<command>[bsp] "[MapFile]"</command>
|
|
<command>[vis] "[MapFile]"</command>
|
|
</build>
|
|
<build name="CSG, BSP, VIS, RAD">
|
|
<command>[csg] "[MapFile]"</command>
|
|
<command>[bsp] "[MapFile]"</command>
|
|
<command>[vis] "[MapFile]"</command>
|
|
<command>[rad] "[MapFile]"</command>
|
|
</build>
|
|
<build name="CSG, BSP, VIS, RAD -sparse">
|
|
<command>[csg] "[MapFile]"</command>
|
|
<command>[bsp] "[MapFile]"</command>
|
|
<command>[vis] "[MapFile]"</command>
|
|
<command>[rad] -sparse "[MapFile]"</command>
|
|
</build>
|
|
</project>
|
|
|