Browse Source

ParserGen: print what is being generated

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@iki.fi>
pull/251/head
Tomi Valkeinen 11 years ago
parent
commit
1053aa79d1
  1. 5
      src/CppParser/Bindings/ParserGen.cs

5
src/CppParser/Bindings/ParserGen.cs

@ -121,12 +121,12 @@ namespace CppSharp @@ -121,12 +121,12 @@ namespace CppSharp
public static void Main(string[] args)
{
Console.WriteLine("Generating the C++/CLI parser bindings...");
Console.WriteLine("Generating the C++/CLI parser bindings for Windows...");
ConsoleDriver.Run(new ParserGen(GeneratorKind.CLI, "i686-pc-win32",
CppAbi.Microsoft));
Console.WriteLine();
Console.WriteLine("Generating the C# parser bindings...");
Console.WriteLine("Generating the C# parser bindings for Windows...");
ConsoleDriver.Run(new ParserGen(GeneratorKind.CSharp, "i686-pc-win32",
CppAbi.Microsoft));
@ -136,6 +136,7 @@ namespace CppSharp @@ -136,6 +136,7 @@ namespace CppSharp
// of libcxx since the one provided by the Mac SDK is not compatible with a recent
// Clang frontend that we use to parse it.
Console.WriteLine("Generating the C# parser bindings for OSX...");
ConsoleDriver.Run(new ParserGen(GeneratorKind.CSharp, "i686-apple-darwin12.4.0",
CppAbi.Itanium));
}

Loading…
Cancel
Save