diff options
| author | star-tek-mb <[email protected]> | 2023-05-01 14:02:34 +0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-01 11:02:34 +0200 |
| commit | ed2caa12775da95d3e19ce42dccdca4a0ba8f8a0 (patch) | |
| tree | 1f4e9b51f4ef28d6c43fc4c83f0fd03431844b05 /build.zig | |
| parent | 59596e4266aa19692dcf29e3e0c4b3e7ffd50598 (diff) | |
| download | raylib-ed2caa12775da95d3e19ce42dccdca4a0ba8f8a0.tar.gz raylib-ed2caa12775da95d3e19ce42dccdca4a0ba8f8a0.zip | |
fix for latest zig master (#3037)
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 16 |
1 files changed, 2 insertions, 14 deletions
@@ -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(); -}
\ No newline at end of file + raylib.build(b); +} |
