mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
We will not want to install virtual drivers by default, yet they should be inside the "all" category. So add a new "default" category and also a separate array for the future virtual drivers.
25 lines
808 B
Meson
25 lines
808 B
Meson
option('drivers',
|
|
description: 'Drivers to integrate, "default" selects the default set, "all" selects all drivers',
|
|
type: 'string',
|
|
value: 'default')
|
|
option('udev_rules',
|
|
description: 'Whether to create a udev rules file',
|
|
type: 'boolean',
|
|
value: true)
|
|
option('udev_rules_dir',
|
|
description: 'Installation path for udev rules',
|
|
type: 'string',
|
|
value: 'auto')
|
|
option('x11-examples',
|
|
description: 'Whether to build X11 example applications',
|
|
type: 'boolean',
|
|
value: true)
|
|
option('gtk-examples',
|
|
description: 'Whether to build GTK+ example applications',
|
|
type: 'boolean',
|
|
value: false)
|
|
option('doc',
|
|
description: 'Whether to build the API documentation',
|
|
type: 'boolean',
|
|
value: true)
|