summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-07-25 17:20:02 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-07-27 18:48:05 +0530
commit43e075d81f3c3f0351d7661b8c4efd97614cf5bd (patch)
treecd257302f755f9c705f66f4219127cd0f291c6c2 /meson_options.txt
parentd6d8f355630760a1c035ea4fa40d96d9610d21c1 (diff)
meson: Convert common options to feature options
The remaining automagic options are in tests and examples. https://bugzilla.gnome.org/show_bug.cgi?id=795107
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 75491077..029c07b1 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,6 +1,6 @@
-option('introspection', type : 'boolean', value : true, yield : true,
- description : 'Generate gobject-introspection bindings')
-option('gtk_doc', type : 'boolean', value : true, yield : true,
+option('gtk_doc', type : 'feature', value : 'auto', yield : true,
description : 'Build API documentation with gtk-doc')
+option('introspection', type : 'feature', value : 'auto', yield : true,
+ description : 'Generate gobject-introspection bindings')
option('pygi-overrides-dir', type : 'string', value : '',
- description: 'Path to pygobject overrides directory') \ No newline at end of file
+ description: 'Path to pygobject overrides directory')