From c95078320c6d21c325f22ce28fb6d0925165e278 Mon Sep 17 00:00:00 2001 From: sdilts Date: Thu, 2 Aug 2018 20:13:48 -0600 Subject: [PATCH] Add missing dependency libinput to types/meson.build The file `types/tablet_v2/wlr_tablet_v2.c` includes . Without this change, libinput.h may not be found on some systems. --- types/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/meson.build b/types/meson.build index 55c0e3ba..89aa967f 100644 --- a/types/meson.build +++ b/types/meson.build @@ -57,5 +57,5 @@ lib_wlr_types = static_library( 'wlr_screencopy_v1.c', ), include_directories: wlr_inc, - dependencies: [pixman, xkbcommon, wayland_server, wlr_protos], + dependencies: [pixman, xkbcommon, wayland_server, wlr_protos, libinput], )