Browse Source

Properly configured the dependencies in our test for them.

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/778/merge
Dimitar Dobrev 9 years ago
parent
commit
d49453bd67
  1. 2
      tests/NamespacesDerived/NamespacesDerived.cs

2
tests/NamespacesDerived/NamespacesDerived.cs

@ -1,7 +1,6 @@ @@ -1,7 +1,6 @@
using System.IO;
using CppSharp.AST;
using CppSharp.Generators;
using CppSharp.Passes;
using CppSharp.Utils;
namespace CppSharp.Tests
@ -29,6 +28,7 @@ namespace CppSharp.Tests @@ -29,6 +28,7 @@ namespace CppSharp.Tests
if (System.Type.GetType("Mono.Runtime") == null)
module.SharedLibraryName += ".dll";
module.LibraryName = @base;
driver.Options.Modules[1].Dependencies.Add(module);
driver.Options.Modules.Insert(1, module);
}

Loading…
Cancel
Save