summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2018-08-17 15:44:38 +0200
committerJens Georg <mail@jensge.org>2018-08-17 17:01:10 +0200
commit3492123f5997b3760ea21be597bfc8f2bf3ba1e1 (patch)
treed57ddc88bc05e7722a452d771cca6eedee21242c /meson_options.txt
parent6c9ebf96f59c71e572a6791b789835877e75c2c1 (diff)
downloadgssdp-3492123f5997b3760ea21be597bfc8f2bf3ba1e1.tar.gz
meson: Use meson-style options
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 2dc4b33..79ded87 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,4 +1,4 @@
-option('enable-gtk-doc', type: 'boolean', value: false, description: 'Enable generating the API reference (depends on GTK-Doc)')
-option('without-gtk', type: 'boolean', value: false, description: 'Compile without GTK+ support')
-option('disable-introspection', type: 'boolean', value : false, description: 'Disable GObject Introspection')
-option('disable-vala', type: 'boolean', value: false, description: 'Disable generation of vala vapi file')
+option('docs', type: 'boolean', value: false, description: 'Enable generating the API reference (depends on GTK-Doc)')
+option('ui', type: 'boolean', value: true, description: 'Build GTK+ UI tool')
+option('introspection', type: 'boolean', value : true, description: 'Enable or disable GObject Introspection')
+option('vapi', type: 'boolean', value: true, description: 'Enable or disable generation of vala vapi file')