mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 04:30:06 +01:00
The keyword is 'value', not 'default'. With meson 0.43 this now stops building. https://bugs.freedesktop.org/show_bug.cgi?id=103162 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
20 lines
668 B
Meson
20 lines
668 B
Meson
option('udev-dir',
|
|
type: 'string',
|
|
value: '',
|
|
description: 'udev base directory [default=$prefix/lib/udev]')
|
|
option('libwacom',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Use libwacom for tablet identification (default=true)')
|
|
option('debug-gui',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Enable the "debug-gui" feature in the libinput tool [default=true]')
|
|
option('tests',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Build the tests [default=true]')
|
|
option('documentation',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Build the documentation [default=true]')
|