Browse Source

Enable debug information generation for all tests.

pull/1022/head
Rokas Kupstys 8 years ago
parent
commit
944c9f4f7f
  1. 1
      src/Generator.Tests/GeneratorTest.cs

1
src/Generator.Tests/GeneratorTest.cs

@ -28,6 +28,7 @@ namespace CppSharp.Utils @@ -28,6 +28,7 @@ namespace CppSharp.Utils
options.GeneratorKind = kind;
options.OutputDir = Path.Combine(GetOutputDirectory(), "gen", name);
options.Quiet = true;
options.GenerateDebugOutput = true;
var testModule = options.AddModule(name);
testModule.SharedLibraryName = $"{name}.Native";

Loading…
Cancel
Save