25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
309 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;