Files
buffybox/iskey/meson.build
Caleb Connolly 704f23576a iskey: new utility
iskey tells you if any of a given list of keys are pressed on any input
device in the system.

e.g.

$ iskey KEY_VOLUMEDOWN

Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
2024-04-14 20:16:30 +01:00

8 lines
139 B
Meson

project('iskey', 'c')
libevdev_dep = dependency('libevdev')
iskey_exe = executable('iskey',
'iskey.c',
dependencies: libevdev_dep)