![Gamer-Kold](/assets/img/avatar_default.png)
* Revert "Fixed broken build.zig files. Now works with latest stable compiler (as of commit, latest is 0.10.1) (#3045)" This reverts commit de748dfffefeba1ba9bcf0c90c538d32c9cb2020 so that zig build script works with master branch of zig. * Added a note to build.zig files that denotes what version of zig they have been tested with. * Standardised the note in the build.zig files
8 lines
219 B
Zig
8 lines
219 B
Zig
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
|
|
pub fn build(b: *std.Build) void {
|
|
raylib.build(b);
|
|
}
|