2023-10-10 09:48:55 +03:00
|
|
|
const std = @import("std");
|
|
|
|
const raylib = @import("src/build.zig");
|
|
|
|
|
2023-11-02 11:14:34 +03:00
|
|
|
// This has been tested to work with zig 0.11.0
|
2023-10-10 09:48:55 +03:00
|
|
|
pub fn build(b: *std.Build) void {
|
|
|
|
raylib.build(b);
|
|
|
|
}
|