mirror of
https://github.com/libfuse/libfuse.git
synced 2024-12-04 01:24:18 +08:00
4a6a5daec0
Allow skipping utils build & installation (-Dutils=false) and examples build (-Dexamples=false). By default behaviour is unchanged (both are true: utils and examples get build).
11 lines
490 B
Meson
11 lines
490 B
Meson
option('disable-mtab', type : 'boolean', value : false,
|
|
description: 'Disable and ignore usage of /etc/mtab')
|
|
|
|
option('udevrulesdir', type : 'string', value : '',
|
|
description: 'Where to install udev rules (if empty, query pkg-config(1))')
|
|
|
|
option('utils', type : 'boolean', value : true,
|
|
description: 'Wheter or not to build and install helper programs')
|
|
|
|
option('examples', type : 'boolean', value : true,
|
|
description: 'Wheter or not to build example programs') |