mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 05:40:04 +01:00
It's common enough for users to want to debug libinput behavior without interference by the compositor or the X server. Being able to run a GUI without having to compile from git is helpful. Note that this changes --enable-event-gui autotools option to --enable-debug-gui and the event-gui mesonconf option to debug-gui. This also drops the standalone event-gui binary in both autotools and meson. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
16 lines
553 B
Meson
16 lines
553 B
Meson
option('udev-dir',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'udev base directory [default=$prefix/lib/udev]')
|
|
option('libwacom',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Use libwacom for tablet identification (default=true)')
|
|
option('debug-gui',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Enable the "debug-gui" feature in the libinput tool [default=true]')
|
|
option('enable-tests',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Build the tests [default=true]')
|