2023-02-05 17:03:03 +05:00
|
|
|
const std = @import("std");
|
|
|
|
const raylib = @import("src/build.zig");
|
|
|
|
|
2023-05-15 14:23:36 +05:00
|
|
|
// 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 {
|
2023-05-01 14:02:34 +05:00
|
|
|
raylib.build(b);
|
|
|
|
}
|