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);