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 ad1c489 commit c9f23ceCopy full SHA for c9f23ce
build.zig
@@ -12,10 +12,10 @@ pub fn build(b: *std.Build) void {
12
});
13
14
// contains only GLX headers!
15
- lib.installHeadersDirectory("GL", "GL");
16
- lib.installHeadersDirectory("X11", "X11");
17
- lib.installHeadersDirectory("xcb", "xcb");
18
- lib.installHeadersDirectory("xkbcommon", "xkbcommon");
+ lib.installHeadersDirectory(b.path("GL"), "GL", .{});
+ lib.installHeadersDirectory(b.path("X11"), "X11", .{});
+ lib.installHeadersDirectory(b.path("xcb"), "xcb", .{});
+ lib.installHeadersDirectory(b.path("xkbcommon"), "xkbcommon", .{});
19
20
b.installArtifact(lib);
21
}
0 commit comments