summaryrefslogtreecommitdiffhomepage
path: root/build.zig
blob: 01e7b49fbe23e7089bd1c2932d31ffa9c8d82e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
const std = @import("std");
const raylib = @import("src/build.zig");

// This has been tested to work with zig 0.12.0
pub fn build(b: *std.Build) !void {
    try raylib.build(b);
}

// expose helper functions to user's build.zig
pub const addRaylib = raylib.addRaylib;
pub const addRaygui = raylib.addRaygui;