diff options
author | Martin Blanchard <tchaik@gmx.com> | 2018-09-07 00:07:19 +0100 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2018-09-28 14:48:33 +0100 |
commit | 4a6a5daec0384aa91ab142b5f6f4e1b3def7160c (patch) | |
tree | e57c027ef025cd770b6e4f01f2e1db6d65b7062d /meson_options.txt | |
parent | 161fffd979a51da1991276bc50d48237eda831b1 (diff) | |
download | fuse-4a6a5daec0384aa91ab142b5f6f4e1b3def7160c.tar.gz |
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).
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index 983fcac..c08e38e 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -3,3 +3,9 @@ option('disable-mtab', type : 'boolean', value : false, 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')
\ No newline at end of file |