Revert "Update zig build system to zig version 0.11.0 (#3393)"

This reverts commit 540ad99442.
This commit is contained in:
Ray 2023-10-10 08:48:55 +02:00
parent 540ad99442
commit 0d8a6cfbfa
3 changed files with 28 additions and 25 deletions

7
build.zig Normal file
View file

@ -0,0 +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
pub fn build(b: *std.Build) void {
raylib.build(b);
}