25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

11 satır
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;