diff options
author | Erik Reider <[email protected]> | 2024-01-06 19:42:49 +0100 |
---|---|---|
committer | Erik Reider <[email protected]> | 2024-01-06 19:42:49 +0100 |
commit | c66fe881df7aa79a018efbdfe1ea756f2b741b23 (patch) | |
tree | 205e87e45fc42a46464851ed08c0fe44ae6829e2 | |
parent | 6759e8da7ab53a46b0eb04e5045b8c67262c3a11 (diff) |
Added back xkbcommon dep. Fixes tinywl compilation
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 070a07a..2936768 100644 --- a/meson.build +++ b/meson.build @@ -126,6 +126,7 @@ drm = dependency('libdrm', 'tests=false', ], ) +xkbcommon = dependency('xkbcommon') pixman = dependency('pixman-1', version: '>=0.42.0', fallback: 'pixman', @@ -139,6 +140,7 @@ wlr_deps = [ wlroots, wayland_server, drm, + xkbcommon, pixman, math, rt, |