From 90ea3453c3d92b99aeee7768beb86e380a3ae6fc Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Fri, 24 Sep 2021 10:04:43 +0100 Subject: [PATCH] trivial: Do not install the device tests when using -Dtests=false --- data/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/meson.build b/data/meson.build index 8d3f8f144..f10d4ff6d 100644 --- a/data/meson.build +++ b/data/meson.build @@ -3,7 +3,10 @@ subdir('pki') subdir('remotes.d') subdir('bash-completion') subdir('fish-completion') + +if get_option('tests') subdir('device-tests') +endif if build_daemon subdir('motd')