rework input and new log entry handling

This commit is contained in:
Squibid 2025-12-10 14:35:46 -05:00
parent a41abb7e6b
commit 82a2601e6c
Signed by: squibid
GPG key ID: BECE5684D3C4005D
4 changed files with 41 additions and 88 deletions

View file

@ -15,6 +15,7 @@ pub fn build(b: *std.Build) void {
const wlroots = b.dependency("wlroots", .{}).module("wlroots");
const zlua = b.dependency("zlua", .{}).module("zlua");
const zargs = b.dependency("args", .{ .target = target, .optimize = optimize }).module("args");
const linenoize = b.dependency("linenoize", .{}).module("linenoise");
wlroots.addImport("wayland", wayland);
wlroots.resolved_target = target;
@ -35,6 +36,7 @@ pub fn build(b: *std.Build) void {
whet.root_module.addImport("wlroots", wlroots);
whet.root_module.addImport("zlua", zlua);
whet.root_module.addImport("args", zargs);
whet.root_module.addImport("linenoize", linenoize);
whet.root_module.linkSystemLibrary("wayland-client", .{});