From 4553a1df640d47f28f1de5a3649f617c042104b4 Mon Sep 17 00:00:00 2001 From: Asmir A Date: Sat, 2 Sep 2023 22:25:56 +0200 Subject: [PATCH] build: link libevdev --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index 0823e63..588f431 100644 --- a/build.zig +++ b/build.zig @@ -24,6 +24,7 @@ pub fn build(b: *std.Build) void { .optimize = optimize, }); exe.linkLibC(); + exe.linkSystemLibrary("evdev"); // This declares intent for the executable to be installed into the // standard location when the user invokes the "install" step (the default