switch to luajit

This commit is contained in:
Squibid 2025-12-13 21:24:17 -05:00
parent 7537778e23
commit da4629a871
Signed by: squibid
GPG key ID: BECE5684D3C4005D
5 changed files with 33 additions and 13 deletions

View file

@ -45,7 +45,7 @@ pub fn build(b: *std.Build) void {
const xkbcommon = b.dependency("xkbcommon", .{}).module("xkbcommon");
const pixman = b.dependency("pixman", .{}).module("pixman");
const wlroots = b.dependency("wlroots", .{}).module("wlroots");
const zlua = b.dependency("zlua", .{}).module("zlua");
const zlua = b.dependency("zlua", .{ .lang = .luajit }).module("zlua");
const clap = b.dependency("clap", .{}).module("clap");
wlroots.addImport("wayland", wayland);