
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>
8 lines
139 B
Meson
8 lines
139 B
Meson
project('iskey', 'c')
|
|
|
|
libevdev_dep = dependency('libevdev')
|
|
|
|
iskey_exe = executable('iskey',
|
|
'iskey.c',
|
|
dependencies: libevdev_dep)
|