aboutsummaryrefslogtreecommitdiff
path: root/backend/libinput
diff options
context:
space:
mode:
Diffstat (limited to 'backend/libinput')
-rw-r--r--backend/libinput/meson.build19
1 files changed, 19 insertions, 0 deletions
diff --git a/backend/libinput/meson.build b/backend/libinput/meson.build
index ff78d2f8..44bb57e1 100644
--- a/backend/libinput/meson.build
+++ b/backend/libinput/meson.build
@@ -1,3 +1,19 @@
+msg = ['Required for libinput backend support.']
+if 'libinput' in backends
+ msg += 'Install "libinput" or disable the libinput backend.'
+endif
+
+libinput = dependency(
+ 'libinput',
+ version: '>=1.14.0',
+ required: 'libinput' in backends,
+ not_found_message: '\n'.join(msg),
+)
+
+if not libinput.found()
+ subdir_done()
+endif
+
wlr_files += files(
'backend.c',
'events.c',
@@ -8,3 +24,6 @@ wlr_files += files(
'tablet_tool.c',
'touch.c',
)
+
+features += { 'libinput-backend': true }
+wlr_deps += libinput