update to Zig 2024.05

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-06-02 11:41:06 -07:00 committed by Stephen Gutekanst
parent c29698769a
commit ae4bb705e6
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
zig-*
.zig-cache

View file

@ -12,7 +12,7 @@ pub fn build(b: *std.Build) void {
});
inline for (.{ "vk_video", "vulkan" }) |subdir| {
lib.installHeadersDirectory("include/" ++ subdir, subdir);
lib.installHeadersDirectory(b.path("include/" ++ subdir), subdir, .{});
}
b.installArtifact(lib);
}