aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorJames Hilliard <james.hilliard1@gmail.com>2020-03-03 15:27:51 -0700
committerJames Hilliard <james.hilliard1@gmail.com>2021-04-16 03:45:06 -0600
commit88f1605a826ca0c2ff02be6f4cf9ecabf68e8341 (patch)
treee4957692b87b13284771aff111b79d521ed0b634 /meson.build
parentmeson: only require cpp for tests (diff)
downloadwayland-88f1605a826ca0c2ff02be6f4cf9ecabf68e8341.tar
wayland-88f1605a826ca0c2ff02be6f4cf9ecabf68e8341.tar.gz
wayland-88f1605a826ca0c2ff02be6f4cf9ecabf68e8341.tar.bz2
wayland-88f1605a826ca0c2ff02be6f4cf9ecabf68e8341.tar.lz
wayland-88f1605a826ca0c2ff02be6f4cf9ecabf68e8341.tar.xz
wayland-88f1605a826ca0c2ff02be6f4cf9ecabf68e8341.tar.zst
wayland-88f1605a826ca0c2ff02be6f4cf9ecabf68e8341.zip
build: add option to disable tests
When building for a product, tests are not needed. Besides, one test requires a C++ compiler, which is not always available. So, add an option to configure to disable building tests altogether. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index cdb66bc..714a86d 100644
--- a/meson.build
+++ b/meson.build
@@ -84,7 +84,9 @@ subdir('src')
if get_option('libraries')
subdir('cursor')
subdir('egl')
- subdir('tests')
+ if get_option('tests')
+ subdir('tests')
+ endif
if get_option('documentation')
subdir('doc')
endif