From: asafkahlon <35964924+asafkahlon@users.noreply.github.com> Date: Wed, 9 Jun 2021 08:07:25 +0000 (+0300) Subject: Add an option to disable building tests (#533) X-Git-Tag: fuse-3.10.4~1 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c7a8b42f3120af0822c6bb0e6c1756980ac48c8f;p=qemu-gpiodev%2Flibfuse.git Add an option to disable building tests (#533) Signed-off-by: Asaf Kahlon --- diff --git a/meson.build b/meson.build index 6feb0a5..79a18c6 100644 --- a/meson.build +++ b/meson.build @@ -125,7 +125,7 @@ thread_dep = dependency('threads') # # Read build files from sub-directories # -subdirs = [ 'lib', 'include', 'test' ] +subdirs = [ 'lib', 'include'] if get_option('utils') and not platform.endswith('bsd') and platform != 'dragonfly' subdirs += [ 'util', 'doc' ] endif @@ -134,6 +134,10 @@ if get_option('examples') subdirs += 'example' endif +if get_option('tests') + subdirs += 'test' +endif + foreach n : subdirs subdir(n) endforeach diff --git a/meson_options.txt b/meson_options.txt index 8950ff1..43304d1 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -13,3 +13,6 @@ option('examples', type : 'boolean', value : true, option('useroot', type : 'boolean', value : true, description: 'Set owner and setuid bits on installed files') +option('tests', type : 'boolean', value : true, + description: 'Compile the test files') +