diff options
author | Scott Anderson <ascent12@hotmail.com> | 2018-08-03 14:58:22 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-03 14:58:22 +1200 |
commit | eb9c9d8852bf3b82d78418796c73142054ffab99 (patch) | |
tree | 378b4dfcc157cf98406b0c8e8753c67d28c6ee9d | |
parent | 1654fc80ebdc4c69d86cbb700ceeb49b8f090c62 (diff) | |
parent | c95078320c6d21c325f22ce28fb6d0925165e278 (diff) |
Merge pull request #1173 from sdilts/add-missing-libinput
Add missing dependency libinput to types/meson.build
-rw-r--r-- | types/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/types/meson.build b/types/meson.build index b37d551b..23c6cd13 100644 --- a/types/meson.build +++ b/types/meson.build @@ -59,5 +59,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], ) |