選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
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;