mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 09:32:34 +00:00
22 lines
694 B
INI
22 lines
694 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
|
|
|
|
zennode_normal
|
|
{
|
|
title = "ZenNode - Normal";
|
|
compiler = "ZenNode.exe";
|
|
parameters = "%F -o %F";
|
|
}
|
|
|
|
zennode_fast
|
|
{
|
|
title = "ZenNode - Fast (no reject)";
|
|
compiler = "ZenNode.exe";
|
|
parameters = "-n3 -nq -rz %F -o %F";
|
|
}
|