mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
41 lines
1.1 KiB
INI
41 lines
1.1 KiB
INI
|
|
compilers
|
|
{
|
|
// This defines what files a compiler uses
|
|
zennode
|
|
{
|
|
program = "ZenNode.exe";
|
|
}
|
|
}
|
|
|
|
|
|
// Below are configurations for this nodebuilder. If you want to make your own configurations,
|
|
// it is recommended to do so in your own file as this file will be updated each release.
|
|
|
|
// NOTE: Nodebuilder configuration key names defined here must be unique for all nodebuilders!
|
|
// Recommend to start the key name with the name of the compiler, followed by underscore and a specific name.
|
|
|
|
// The "compiler" setting must refer to an existing compiler (such as defined above), but it
|
|
// does not have to be a compiler defined in the same configuration file.
|
|
|
|
// 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
|
|
|
|
nodebuilders
|
|
{
|
|
zennode_normal
|
|
{
|
|
title = "ZenNode - Normal";
|
|
compiler = "zennode";
|
|
parameters = "%F -o %F";
|
|
}
|
|
|
|
zennode_fast
|
|
{
|
|
title = "ZenNode - Fast (no reject)";
|
|
compiler = "zennode";
|
|
parameters = "-n3 -nq -rz %F -o %F";
|
|
}
|
|
}
|