From d49453bd677a704ce916ca7b0ba5cef2382d0d5b Mon Sep 17 00:00:00 2001 From: Dimitar Dobrev Date: Sun, 19 Feb 2017 22:50:05 +0200 Subject: [PATCH] Properly configured the dependencies in our test for them. Signed-off-by: Dimitar Dobrev --- tests/NamespacesDerived/NamespacesDerived.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/NamespacesDerived/NamespacesDerived.cs b/tests/NamespacesDerived/NamespacesDerived.cs index 49ae456a..36dd79a3 100644 --- a/tests/NamespacesDerived/NamespacesDerived.cs +++ b/tests/NamespacesDerived/NamespacesDerived.cs @@ -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 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); }