Browse Source

Document recently added GenerationOutputMode option.

pull/1514/head
Joao Matos 5 years ago committed by João Matos
parent
commit
27cd76ebc9
  1. 6
      src/Generator/Options.cs

6
src/Generator/Options.cs

@ -155,6 +155,12 @@ namespace CppSharp @@ -155,6 +155,12 @@ namespace CppSharp
}
}
/// <summary>
/// Sets the generation output mode which affects how output files are
/// generated, either as one output file per binding module, or as one
/// output file for each input translation unit.
/// Note: Currently only available for C# generator.
/// </summary>
public GenerationOutputMode GenerationOutputMode { get; set; } =
GenerationOutputMode.FilePerModule;

Loading…
Cancel
Save