We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b7ea69 commit 59bd475Copy full SHA for 59bd475
src/CLI/Generator.cs
@@ -123,6 +123,7 @@ public void Setup(Driver driver)
123
124
module.Headers.AddRange(options.HeaderFiles);
125
module.Libraries.AddRange(options.Libraries);
126
+ module.IncludeDirs.AddRange(options.IncludeDirs);
127
module.OutputNamespace = options.OutputNamespace;
128
129
if (abi == CppAbi.Microsoft)
@@ -139,9 +140,6 @@ public void Setup(Driver driver)
139
140
foreach (string s in options.Arguments)
141
parserOptions.AddArguments(s);
142
- foreach (string s in options.IncludeDirs)
143
- parserOptions.AddIncludeDirs(s);
144
-
145
foreach (KeyValuePair<string, string> d in options.Defines)
146
{
147
if(string.IsNullOrEmpty(d.Value))
0 commit comments