mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
70fb21c35b
Co-authored-by: Simon Ser <contact@emersion.fr>
29 lines
523 B
Meson
29 lines
523 B
Meson
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',
|
|
'keyboard.c',
|
|
'pointer.c',
|
|
'switch.c',
|
|
'tablet_pad.c',
|
|
'tablet_tool.c',
|
|
'touch.c',
|
|
)
|
|
|
|
features += { 'libinput-backend': true }
|
|
wlr_deps += libinput
|