From: Martin Blanchard Date: Thu, 6 Sep 2018 23:07:19 +0000 (+0100) Subject: Add build options for utils and examples X-Git-Tag: fuse-3.3.0~24 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4a6a5daec0384aa91ab142b5f6f4e1b3def7160c;p=qemu-gpiodev%2Flibfuse.git 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). --- diff --git a/meson.build b/meson.build index 6d4aef7..7df434b 100644 --- a/meson.build +++ b/meson.build @@ -92,10 +92,15 @@ thread_dep = dependency('threads') # # Read build files from sub-directories # -subdirs = [ 'lib', 'include', 'example', 'doc', 'test' ] -if not platform.endswith('bsd') and platform != 'dragonfly' - subdirs += 'util' +subdirs = [ 'lib', 'include', 'test' ] +if get_option('utils') and not platform.endswith('bsd') and platform != 'dragonfly' + subdirs += [ 'util', 'doc' ] endif + +if get_option('examples') + subdirs += 'example' +endif + foreach n : subdirs subdir(n) endforeach 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