seat: add support for pointer device configuration using environment variables

This commit is contained in:
Dima Krasner 2022-01-03 17:37:14 +08:00
parent 3321daef98
commit 49fb5b13cc
2 changed files with 292 additions and 0 deletions

View file

@ -40,6 +40,7 @@ wayland_protos = dependency('wayland-protocols', version: '>=1.14')
wayland_server = dependency('wayland-server')
xkbcommon = dependency('xkbcommon')
math = cc.find_library('m')
libinput = dependency('libinput')
wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir')
wayland_scanner = find_program('wayland-scanner')
@ -155,6 +156,7 @@ executable(
wlroots,
xkbcommon,
math,
libinput,
],
install: true,
)