blob: 12c0513f6a4095cbb06a26e97167157b4877dac0 (
plain)
1
2
3
4
5
6
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);
}
|