Skip to content

Commit

Permalink
BREAKING: changed the naming scheme from "Qt<module>Sharp" to "Qt<mod…
Browse files Browse the repository at this point in the history
…ule>.Sharp".

Signed-off-by: Dimitar Dobrev <[email protected]>
  • Loading branch information
ddobrev committed Sep 12, 2016
1 parent 4538187 commit fd6b15b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QtSharp/QtSharp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public void Setup(Driver driver)
{
string qtModule = GetModuleNameFromLibFile(libFile);
var module = new CppSharp.AST.Module();
module.LibraryName = string.Format("{0}Sharp", qtModule);
module.LibraryName = string.Format("{0}.Sharp", qtModule);
module.OutputNamespace = qtModule;
module.Headers.Add(qtModule);
var moduleName = qtModule.Substring(qt.Length);
Expand Down

0 comments on commit fd6b15b

Please sign in to comment.