mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2025-12-20 02:10:09 +01:00
A bit of a niche case but this helps with embedding libevdev as static library when the tools don't matter. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
16 lines
472 B
Meson
16 lines
472 B
Meson
option('tests',
|
|
type: 'feature',
|
|
value: 'enabled',
|
|
description: 'Build the tests')
|
|
option('tools',
|
|
type: 'feature',
|
|
value: 'enabled',
|
|
description: 'Build the tools')
|
|
option('documentation',
|
|
type: 'feature',
|
|
value: 'enabled',
|
|
description: 'Build the documentation')
|
|
option('coverity',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Enable coverity build fixes, see meson.build for details')
|