mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 05:40:04 +01:00
This does little other than drag in a whole bunch of dependencies. The libinput documentation is designed to be consumed online, so there's no need building it on every machine. We leave the dependencies installed in the images because it's a lot easier to remove them and test if the build still works than adding them and dragging in every updated package since we built the image. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
36 lines
1.2 KiB
Meson
36 lines
1.2 KiB
Meson
option('udev-dir',
|
|
type: 'string',
|
|
value: '',
|
|
description: 'udev base directory [default=$prefix/lib/udev]')
|
|
option('epoll-dir',
|
|
type: 'string',
|
|
value: '',
|
|
description: 'libepoll-shim base directory (for non-Linux OS) [default=$prefix]')
|
|
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('install-tests',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Install the libinput test command [default=false]')
|
|
option('documentation',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Build the documentation [default=false]')
|
|
option('coverity',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Enable coverity build fixes, see meson.build for details [default=false]')
|
|
option('zshcompletiondir',
|
|
type: 'string',
|
|
value: '',
|
|
description: 'Directory for zsh completion scripts ["no" disables]')
|