diff options
| author | Purple4pur <[email protected]> | 2023-10-14 01:55:52 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-13 19:55:52 +0200 |
| commit | 4981acb241d18afc4d0db3497ecbe37d1f31808e (patch) | |
| tree | b06d941d9a2463e870cc45a8a6d0d9ca3e4f979f /src | |
| parent | 5a0d9c8d43d212892e421e1cbb532fea508d8692 (diff) | |
| download | raylib-4981acb241d18afc4d0db3497ecbe37d1f31808e.tar.gz raylib-4981acb241d18afc4d0db3497ecbe37d1f31808e.zip | |
fix zig syntax errors in examples, and make it install executables correctly (#3395)
Diffstat (limited to 'src')
| -rw-r--r-- | src/build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.zig b/src/build.zig index 27250f5f..53e07424 100644 --- a/src/build.zig +++ b/src/build.zig @@ -1,6 +1,6 @@ const std = @import("std"); -// 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 addRaylib(b: *std.Build, target: std.zig.CrossTarget, optimize: std.builtin.OptimizeMode, options: Options) *std.Build.CompileStep { const raylib_flags = &[_][]const u8{ "-std=gnu99", |
