mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
22 lines
702 B
INI
22 lines
702 B
INI
|
|
// NOTE: Key names of the structures defined here must be unique within the entire compilers namespace!
|
|
// Recommend to start the key name with the name of this configuration, followed by underscore and a specific name.
|
|
|
|
// Parameter placeholders:
|
|
// %F is the WAD file where the nodebuilder must read from
|
|
// %T is the WAD file to which the nodebuilde writes its output (optional)
|
|
// When %T is not specified, the nodebuilder should output to %F
|
|
|
|
glbsp_normal
|
|
{
|
|
title = "glBSP - Normal";
|
|
compiler = "glBSP.exe";
|
|
parameters = "%F -o %T";
|
|
}
|
|
|
|
glbsp_fast
|
|
{
|
|
title = "glBSP - Fast (no reject)";
|
|
compiler = "glBSP.exe";
|
|
parameters = "-normal -noreject -v5 -factor 1 %F -o %T";
|
|
}
|