libfuse/meson_options.txt
Martin Blanchard 4a6a5daec0 Add build options for utils and examples
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).
2018-09-28 14:48:33 +01:00

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')