add libinput as a dependency to meson.build

This commit is contained in:
Ben Lönnqvist 2021-01-02 16:33:14 +02:00 committed by Johan Malm
parent c765b9883f
commit 695ce28b55

View file

@ -48,6 +48,7 @@ xml2 = dependency('libxml-2.0')
glib = dependency('glib-2.0')
cairo = dependency('cairo')
pangocairo = dependency('pangocairo')
input = dependency('libinput', version: '>=1.14')
if get_option('xwayland').enabled() and not wlroots_has_xwayland
error('no wlroots Xwayland support')
@ -62,7 +63,7 @@ subdir('protocols')
labwc_deps = [
server_protos, wayland_server, wlroots, xkbcommon, xml2, glib,
cairo, pangocairo
cairo, pangocairo, input
]
subdir('include')