Fixed broken build.zig files. Now works with latest stable compiler (as of commit, latest is 0.10.1) (#3045)

Co-authored-by: Talha Qamar <qamartalha@proton.me>
This commit is contained in:
Gamer-Kold 2023-05-06 15:04:40 +05:00 committed by GitHub
parent 5573f0f1c7
commit de748dfffe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 11 deletions

View file

@ -1,6 +1,6 @@
const std = @import("std");
const raylib = @import("src/build.zig");
pub fn build(b: *std.Build) void {
pub fn build(b: *std.build.Builder) void {
raylib.build(b);
}