summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-11-14 09:59:24 +0100
committerBastien Nocera <hadess@hadess.net>2017-11-15 13:47:53 +0100
commitb029fbe1ac0716163193a7e896a84e0f08bbcfdf (patch)
tree519916eb6b7e8f4d724d5805f04870c7ddaa877b /meson_options.txt
parent2739f5ce691eae31eb2c2680d6a90019c7b6d287 (diff)
downloadgnome-bluetooth-b029fbe1ac0716163193a7e896a84e0f08bbcfdf.tar.gz
build: Rename build options
Following the new meson porting guidelines, this patch renames the build options as follows: - Remove the 'enable' prefix from boolean options. - Remove the 'with' prefix from string options. - The character separator in multi-word options has been changed to underscore. https://bugzilla.gnome.org/show_bug.cgi?id=790332
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 8bee50b0..1defb70d 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,3 +1,3 @@
-option('enable-icon-update', type: 'boolean', value: true, description: 'Enable icon cache update')
-option('enable-gtk-doc', type: 'boolean', value: false, description: 'use gtk-doc to build documentation')
-option('enable-introspection', type: 'boolean', value: true, description: 'Enable GObject Introspection (depends on GObject)')
+option('icon_update', type: 'boolean', value: true, description: 'Enable icon cache update')
+option('gtk_doc', type: 'boolean', value: false, description: 'use gtk-doc to build documentation')
+option('introspection', type: 'boolean', value: true, description: 'Enable GObject Introspection (depends on GObject)')