You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 regels
384 B

  1. const std = @import("std");
  2. const raylib = @import("src/build.zig");
  3. // This has been tested to work with zig 0.12.0
  4. pub fn build(b: *std.Build) !void {
  5. try raylib.build(b);
  6. }
  7. // expose helper functions to user's build.zig
  8. pub const addRaylib = raylib.addRaylib;
  9. pub const addRaygui = raylib.addRaygui;
  10. // expose options for compiling
  11. pub const RaylibOptions = raylib.Options;