8e6e23b8d0
We shouldn't need to specifically enable debug logging to get useful data out of a compiled libfprint either, so always enable debugging output. It will still be switched off at runtime, by default.
20 lines
608 B
Meson
20 lines
608 B
Meson
option('drivers',
|
|
description: 'Drivers to integrate',
|
|
type: 'string',
|
|
value: 'all')
|
|
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('doc',
|
|
description: 'Whether to build the API documentation',
|
|
type: 'boolean',
|
|
value: true)
|