summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMarco Trevisan (TreviƱo) <mail@3v1n0.net>2019-02-13 12:51:21 -0500
committerMarco Trevisan <mail@3v1n0.net>2019-05-02 19:56:23 +0000
commit5d1a87d3554a69db89bb63cebd65fadf1b82169b (patch)
tree95b17deedd983c12acd63954b8f2a187b5ffde60 /meson_options.txt
parent34312c272bd9872963342d14d15416757aff8815 (diff)
downloadmutter-5d1a87d3554a69db89bb63cebd65fadf1b82169b.tar.gz
meson: Add option flags to control test suites building
Now the `tests` meson option controls weather we should build all the test suites while `core_tests` controls mutter tests. https://gitlab.gnome.org/GNOME/mutter/merge_requests/442
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index add49c866..1e122300e 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -111,10 +111,16 @@ option('clutter_tests',
description: 'Enable clutter tests'
)
+option('core_tests',
+ type: 'boolean',
+ value: true,
+ description: 'Enable mutter core tests'
+)
+
option('tests',
type: 'boolean',
value: true,
- description: 'Enable mutter tests'
+ description: 'Enable tests globally. Specific test suites can be controlled with core_tests, clutter_tests, and cogl_tests'
)
option('installed_tests',