spiegel-keyman/linux/keyman-system-service/meson.build
Eberhard Beilharz 603c1d6ea0
feat(linux): Add system service to toggle capslock LED
This implements the server side.
2023-05-15 09:13:58 +02:00

11 lines
332 B
Meson

project('keyman-system-service', 'c', 'cpp',
version: run_command('cat', '../../VERSION.md', check: true).stdout().strip(),
license: 'GPL-2+',
meson_version: '>=1.0')
evdev = dependency('libevdev', version: '>= 1.9')
systemd = dependency('libsystemd')
subdir('resources')
subdir('src')
subdir('tests')