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 24decfa commit 2a58d51Copy full SHA for 2a58d51
examples/SDL/SDL.cs
@@ -9,13 +9,14 @@ class SDL : ILibrary
9
{
10
public void Setup(Driver driver)
11
12
- var parserOptions = driver.ParserOptions;
13
var options = driver.Options;
14
options.LibraryName = "SDL";
15
options.Headers.Add("SDL.h");
+ options.OutputDir = "SDL";
16
+
17
+ var parserOptions = driver.ParserOptions;
18
var sdlPath = Path.Combine(GetExamplesDirectory("SDL"), "SDL-2.0/include");
19
parserOptions.AddIncludeDirs(sdlPath);
- options.OutputDir = "SDL";
20
}
21
22
public void SetupPasses(Driver driver)
0 commit comments