From 1053aa79d16d1427fec4e9a5baef67553446da60 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Wed, 7 May 2014 22:59:44 +0300 Subject: [PATCH] ParserGen: print what is being generated Signed-off-by: Tomi Valkeinen --- src/CppParser/Bindings/ParserGen.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/CppParser/Bindings/ParserGen.cs b/src/CppParser/Bindings/ParserGen.cs index 3966949b..30e25ccd 100644 --- a/src/CppParser/Bindings/ParserGen.cs +++ b/src/CppParser/Bindings/ParserGen.cs @@ -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 // 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)); }