summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-10-10 08:04:35 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-10-10 08:21:10 +1000
commit4bb5ce5b74550743b30ba913fbb0d66d65dc1ebf (patch)
tree5f9fed79ddb8ee5ef090444eee547dc9101b915e /meson_options.txt
parentb9914ec2794a6b0c473337cfb3f088300bddba6a (diff)
Fix meson options default values
The keyword is 'value', not 'default'. With meson 0.43 this now stops building. https://bugs.freedesktop.org/show_bug.cgi?id=103162 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 9861d2d3..144f9160 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,20 +1,20 @@
option('udev-dir',
type: 'string',
- default: '',
+ value: '',
description: 'udev base directory [default=$prefix/lib/udev]')
option('libwacom',
type: 'boolean',
- default: true,
+ value: true,
description: 'Use libwacom for tablet identification (default=true)')
option('debug-gui',
type: 'boolean',
- default: true,
+ value: true,
description: 'Enable the "debug-gui" feature in the libinput tool [default=true]')
option('tests',
type: 'boolean',
- default: true,
+ value: true,
description: 'Build the tests [default=true]')
option('documentation',
type: 'boolean',
- default: true,
+ value: true,
description: 'Build the documentation [default=true]')