Browse Source

Disabled symbol checking by default.

This feature still needs some work to be totally robust and it makes the tool not generate bindings by default so disable it for now.
pull/92/head
triton 12 years ago
parent
commit
a219ea4b84
  1. 2
      src/Generator/Options.cs
  2. 1
      src/Generator/Utils/TestsUtils.cs

2
src/Generator/Options.cs

@ -32,7 +32,7 @@ namespace CppSharp @@ -32,7 +32,7 @@ namespace CppSharp
OutputDir = Directory.GetCurrentDirectory();
Libraries = new List<string>();
CheckSymbols = true;
CheckSymbols = false;
GeneratorKind = GeneratorKind.CSharp;
GenerateLibraryNamespace = true;

1
src/Generator/Utils/TestsUtils.cs

@ -59,7 +59,6 @@ namespace CppSharp.Utils @@ -59,7 +59,6 @@ namespace CppSharp.Utils
options.OutputDir = Path.Combine(GetOutputDirectory(), "gen", name);
options.SharedLibraryName = name + ".Native";
options.GenerateLibraryNamespace = true;
options.CheckSymbols = false;
options.Quiet = true;
options.IgnoreParseWarnings = true;

Loading…
Cancel
Save