From 968df88117a9d4bf6c670277cd1217349043b77c Mon Sep 17 00:00:00 2001 From: triton Date: Mon, 15 Jul 2013 21:14:38 +0100 Subject: [PATCH] Add new option for checking symbols and for the main shared library name. --- src/Generator/Driver.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Generator/Driver.cs b/src/Generator/Driver.cs index 43098f46..04a620da 100644 --- a/src/Generator/Driver.cs +++ b/src/Generator/Driver.cs @@ -169,6 +169,7 @@ namespace CppSharp LibraryDirs = new List(); Libraries = new List(); + CheckSymbols = true; GeneratorKind = LanguageGeneratorKind.CSharp; GenerateLibraryNamespace = true; @@ -200,6 +201,8 @@ namespace CppSharp // Library options public List LibraryDirs; public List Libraries; + public bool CheckSymbols; + public string SharedLibraryName; // Generator options public LanguageGeneratorKind GeneratorKind;