From 0f167811458275e769ef70f20ca9bf6d8928afb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Pol=C3=A1k?= Date: Fri, 3 Apr 2026 12:33:42 +0200 Subject: [PATCH] Pass Options.config through to raylib's build.zig (#314) All other options of `rl.Options` are passed through to raylib build, but `config` is not. This makes it impossible to pass special defines to raylib's build. --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index 808c112..768800e 100644 --- a/build.zig +++ b/build.zig @@ -31,6 +31,7 @@ fn getRaylib(b: *std.Build, target: std.Build.ResolvedTarget, optimize: std.buil .opengl_version = options.opengl_version, .android_api_version = options.android_api_version, .android_ndk = options.android_ndk, + .config = options.config, }); const raylib = raylib_dep.artifact("raylib");