summaryrefslogtreecommitdiffhomepage
path: root/build.zig
diff options
context:
space:
mode:
authorPurple4pur <[email protected]>2023-10-14 01:55:52 +0800
committerGitHub <[email protected]>2023-10-13 19:55:52 +0200
commit4981acb241d18afc4d0db3497ecbe37d1f31808e (patch)
treeb06d941d9a2463e870cc45a8a6d0d9ca3e4f979f /build.zig
parent5a0d9c8d43d212892e421e1cbb532fea508d8692 (diff)
downloadraylib-4981acb241d18afc4d0db3497ecbe37d1f31808e.tar.gz
raylib-4981acb241d18afc4d0db3497ecbe37d1f31808e.zip
fix zig syntax errors in examples, and make it install executables correctly (#3395)
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 12c0513f..21638601 100644
--- a/build.zig
+++ b/build.zig
@@ -1,7 +1,7 @@
const std = @import("std");
const raylib = @import("src/build.zig");
-// This has been tested to work with zig master branch as of commit 87de821 or May 14 2023
+// This has been tested to work with zig 0.11.0 (67709b6, Aug 4 2023)
pub fn build(b: *std.Build) void {
raylib.build(b);
}