28 lines
767 B
XML
28 lines
767 B
XML
<?xml version="1.0"?>
|
|
<!--
|
|
build commands
|
|
[RadiantPath]: path to Radiant .. C:\Program Files\Gtkradiant
|
|
[EnginePath]: path to the engine .. C:\ufoai\ C:\Program Files\UFOAI\ /usr/local/games/ufoai/
|
|
-->
|
|
<project version="2.0">
|
|
<var name="ufo2map">"[EnginePath]ufo2map"</var>
|
|
<!-- <var name="qrad3">"[RadiantPath]qrad3" -fs_basepath "[EnginePath]"</var>-->
|
|
|
|
<build name="Entities">
|
|
<command>[ufo2map] -bsp -onlyents "[MapFile]"</command>
|
|
</build>
|
|
|
|
<build name="Test build">
|
|
<command>[ufo2map] "[MapFile]"</command>
|
|
<!-- <command>[qrad3] "[MapFile]"</command>-->
|
|
</build>
|
|
|
|
<build name="Final build">
|
|
<!-- <command>[qbsp3] "[MapFile]"</command>-->
|
|
<command>[ufo2map] -extra -bounce 0 -chop 32 "[MapFile]"</command>
|
|
</build>
|
|
|
|
</project>
|
|
|
|
|