aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsdilts <stuart.dilts@gmail.com>2018-08-02 20:13:48 -0600
committersdilts <stuart.dilts@gmail.com>2018-08-02 20:13:48 -0600
commitc95078320c6d21c325f22ce28fb6d0925165e278 (patch)
tree65898b02daa0fc46e5007740a5812f3f14151e69
parenta3c33e93b80ffd3bd9f9c8dd9af9032ca578b726 (diff)
Add missing dependency libinput to types/meson.build
The file `types/tablet_v2/wlr_tablet_v2.c` includes <libinput.h>. Without this change, libinput.h may not be found on some systems.
-rw-r--r--types/meson.build2
1 files changed, 1 insertions, 1 deletions
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],
)