summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2019-12-23 12:04:21 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2020-01-31 13:46:25 +1000
commita97e09fd2da9ac5fc296f689be51946ae3645026 (patch)
tree0ab87563834d5024e0f2533d13495dc70d0b31be /meson_options.txt
parent1af22ab2682962cfb4b3d08ee5d0052b025e6f24 (diff)
downloadlibwacom-a97e09fd2da9ac5fc296f689be51946ae3645026.tar.gz
meson_options: make the tests a feature too
Brings it in-line with the documentation feature (see 18722d3) so to disable the tests, run meson -Dtests=disabled, as opposed to the previous -Dtests=false. No real reason other than cosmetics here. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 84c92bf..ad7c3bf 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -7,7 +7,7 @@ option('udev-dir',
value: '',
description: 'udev base directory [default=$prefix/lib/udev]')
option('tests',
- type: 'boolean',
- value: true,
- description: 'Build the tests [default=true]')
+ type: 'feature',
+ value: 'enabled',
+ description: 'Build the tests [default=enabled]')