mirror of
https://github.com/MezzalunaWM/Whetstone.git
synced 2026-03-07 19:49:53 -05:00
rework input and new log entry handling
This commit is contained in:
parent
a41abb7e6b
commit
82a2601e6c
4 changed files with 41 additions and 88 deletions
|
|
@ -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", .{});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue