|
|
|
|
@ -43,9 +43,13 @@ namespace CppSharp.AST
@@ -43,9 +43,13 @@ namespace CppSharp.AST
|
|
|
|
|
get |
|
|
|
|
{ |
|
|
|
|
if (string.IsNullOrEmpty(inlinesLibraryName)) |
|
|
|
|
{ |
|
|
|
|
if (string.IsNullOrEmpty(OutputNamespace)) |
|
|
|
|
{ |
|
|
|
|
return string.Format("{0}-inlines", LibraryName); |
|
|
|
|
} |
|
|
|
|
return string.Format("{0}-inlines", OutputNamespace); |
|
|
|
|
} |
|
|
|
|
return inlinesLibraryName; |
|
|
|
|
} |
|
|
|
|
set { inlinesLibraryName = value; } |
|
|
|
|
@ -56,9 +60,13 @@ namespace CppSharp.AST
@@ -56,9 +60,13 @@ namespace CppSharp.AST
|
|
|
|
|
get |
|
|
|
|
{ |
|
|
|
|
if (string.IsNullOrEmpty(templatesLibraryName)) |
|
|
|
|
{ |
|
|
|
|
if (string.IsNullOrEmpty(OutputNamespace)) |
|
|
|
|
{ |
|
|
|
|
return string.Format("{0}-templates", LibraryName); |
|
|
|
|
} |
|
|
|
|
return string.Format("{0}-templates", OutputNamespace); |
|
|
|
|
} |
|
|
|
|
return templatesLibraryName; |
|
|
|
|
} |
|
|
|
|
set { templatesLibraryName = value; } |
|
|
|
|
|