updated to zig 0.16.0

This commit is contained in:
2026-05-10 00:53:22 +12:00
parent 362acfe3cf
commit 18fb90638f
2 changed files with 5 additions and 4 deletions

View File

@@ -23,8 +23,9 @@ pub fn build(b: *std.Build) void {
}),
});
exe.linkLibrary(raylib_artifact);
exe.root_module.addImport("shoots", shoots.module("shoots"));
exe.root_module.linkLibrary(raylib_artifact);
exe.root_module.addImport("rl", raylib_dep.module("raylib"));
b.installArtifact(exe);

View File

@@ -2,11 +2,11 @@
.name = .examples,
.version = "0.0.0",
.fingerprint = 0x7bd0ad45c350042a,
.minimum_zig_version = "0.15.1",
.minimum_zig_version = "0.16.0",
.dependencies = .{
.raylib_zig = .{
.url = "git+https://github.com/raylib-zig/raylib-zig?ref=devel#a4d18b2d1cf8fdddec68b5b084535fca0475f466",
.hash = "raylib_zig-5.6.0-dev-KE8REL5MBQAf3p497t52Xw9P7ojndIkVOWPXnLiLLw2P",
.url = "git+https://github.com/raylib-zig/raylib-zig?ref=devel#58f3c0fa328fc9ff48d17c2c3771ab9c5114aaa6",
.hash = "raylib_zig-6.0.0-KE8REMNkBQCpxwqT9ubVNf5aEOcWRUVIaH2sgt_sDDoZ",
},
.shoots = .{
.path = "../../",