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.
This commit is contained in:
sdilts 2018-08-02 20:13:48 -06:00
parent a3c33e93b8
commit c95078320c
1 changed files with 1 additions and 1 deletions

View File

@ -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],
)