fix for latest zig master (#3037)
This commit is contained in:
parent
59596e4266
commit
ed2caa1277
3 changed files with 12 additions and 26 deletions
16
build.zig
16
build.zig
|
@ -2,17 +2,5 @@ const std = @import("std");
|
|||
const raylib = @import("src/build.zig");
|
||||
|
||||
pub fn build(b: *std.Build) void {
|
||||
// Standard target options allows the person running `zig build` to choose
|
||||
// what target to build for. Here we do not override the defaults, which
|
||||
// means any target is allowed, and the default is native. Other options
|
||||
// for restricting supported target set are available.
|
||||
const target = b.standardTargetOptions(.{});
|
||||
// Standard optimization options allow the person running `zig build` to select
|
||||
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. Here we do not
|
||||
// set a preferred release mode, allowing the user to decide how to optimize.
|
||||
const optimize = b.standardOptimizeOption(.{});
|
||||
|
||||
const lib = raylib.addRaylib(b, target, optimize);
|
||||
lib.installHeader("src/raylib.h", "raylib.h");
|
||||
lib.install();
|
||||
}
|
||||
raylib.build(b);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue