BuildGenerator

Members

Static functions

compileUnit
string compileUnit(string srcFile, string objName, BuildSettings bs, GeneratorSettings gs)

Compile a single source file (srcFile), and write the object to objName.

pathToObjName
string pathToObjName(string path)

Output an unique name to represent the source file. Calls with path that resolve to the same file on the filesystem will return the same, unless they include different symbolic links (which are not resolved).

Inherited Members

From ProjectGenerator

TargetInfo
struct TargetInfo

Information about a single binary target.

generate
void generate(GeneratorSettings settings)

Performs the full generator process.

generateTargets
void generateTargets(GeneratorSettings settings, in TargetInfo[string] targets)

Overridden in derived classes to implement the actual generator functionality.

performPostGenerateActions
void performPostGenerateActions(GeneratorSettings settings, in TargetInfo[string] targets)

Overridable method to be invoked after the generator process has finished.

Meta