From ff94c1752af0c4b65ca8608b09584a64f2091671 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Mon, 16 May 2016 16:59:33 +0100 Subject: [PATCH] Fixed typo in Options.cs added in 6855901ca6aa6a392e3596f94d1264edf2ef87a7. Closes https://github.com/mono/CppSharp/issues/649. --- src/Generator/Options.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Options.cs b/src/Generator/Options.cs index b465dd90..9adf3672 100644 --- a/src/Generator/Options.cs +++ b/src/Generator/Options.cs @@ -70,7 +70,7 @@ namespace CppSharp public bool IsMicrosoftAbi { get { return Abi == CppAbi.Microsoft; } } // Library options - public List Libraries { get { return Module.Headers; } } + public List Libraries { get { return Module.Libraries; } } public bool CheckSymbols; public string SharedLibraryName