From 6cd846d02f67180c0d9da0c084c338a4186860d1 Mon Sep 17 00:00:00 2001 From: dantecatalfamo Date: Sat, 17 Jun 2023 16:21:40 -0400 Subject: [PATCH] Remove unused options from build.zig --- src/build.zig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/build.zig b/src/build.zig index e4e73ec3d..7104046b8 100644 --- a/src/build.zig +++ b/src/build.zig @@ -129,14 +129,10 @@ pub fn build(b: *std.Build) void { // set a preferred release mode, allowing the user to decide how to optimize. const optimize = b.standardOptimizeOption(.{}); - const raymath = b.option(bool, "raymath", "Compile with raymath support"); const raygui = b.option(bool, "raygui", "Compile with raygui support"); - const physac = b.option(bool, "physac", "Compile with physac support"); const lib = addRaylib(b, target, optimize, .{ - .raymath = raymath orelse false, .raygui = raygui orelse false, - .physac = physac orelse false, }); lib.installHeader("src/raylib.h", "raylib.h");