You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: build.zig
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ pub fn build(b: *Build) void {
21
21
constsystem_lua=b.option(bool, "system_lua", "Use system lua") orelsefalse;
22
22
constluau_use_4_vector=b.option(bool, "luau_use_4_vector", "Build Luau to use 4-vectors instead of the default 3-vector.") orelsefalse;
23
23
constlua_user_h=b.option(Build.LazyPath, "lua_user_h", "Lazy path to user supplied c header file") orelsenull;
24
+
constadditional_system_headers=b.option(Build.LazyPath, "additional_system_headers", "Lazy path to additional system headers to include when building Lua") orelsenull;
24
25
25
26
if (lang==.luauandshared) {
26
27
std.debug.panic("Luau does not support compiling or loading shared modules", .{});
0 commit comments