summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-11-11 20:52:59 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2017-11-11 21:03:09 +0100
commit3dd0680008e0ecd1587afafeca1e8220fb3bc737 (patch)
tree9e4bf7fde3a0338fc2222fe8416f470cd37e6d10 /meson_options.txt
parent582f9a57b84f92dc629b2042b887188878578cdb (diff)
downloadgnome-todo-3dd0680008e0ecd1587afafeca1e8220fb3bc737.tar.gz
project: Rename build options
Following the new meson porting guidelines, this patch renames the build options. The list of changes is as follows: - Remove the enable prefix from boolean options. - The character separator from multi-word options has been changed to underscore.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 82288564..359d0b59 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,10 +1,10 @@
-option('enable-background-plugin', type: 'boolean', value: true, description: 'enable Run In Background plugin')
-option('enable-dark-theme-plugin', type: 'boolean', value: true, description: 'enable Dark theme plugin')
-option('enable-scheduled-panel-plugin', type: 'boolean', value: true, description: 'enable Scheduled Panel plugin')
-option('enable-score-plugin', type: 'boolean', value: true, description: 'enable Score plugin')
-option('enable-today-panel-plugin', type: 'boolean', value: true, description: 'enable Today Panel plugin')
-option('enable-unscheduled-panel-plugin', type: 'boolean', value: true, description: 'enable Unscheduled Tasks Panel plugin')
-option('enable-todo-txt-plugin', type: 'boolean', value: true, description: 'enable Todo.Txt plugin')
-option('enable-todoist-plugin', type: 'boolean', value: true, description: 'enable Todoist plugin')
-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('background_plugin', type: 'boolean', value: true, description: 'enable Run In Background plugin')
+option('dark_theme_plugin', type: 'boolean', value: true, description: 'enable Dark theme plugin')
+option('scheduled_panel_plugin', type: 'boolean', value: true, description: 'enable Scheduled Panel plugin')
+option('score_plugin', type: 'boolean', value: true, description: 'enable Score plugin')
+option('today_panel_plugin', type: 'boolean', value: true, description: 'enable Today Panel plugin')
+option('unscheduled_panel_plugin', type: 'boolean', value: true, description: 'enable Unscheduled Tasks Panel plugin')
+option('todo_txt_plugin', type: 'boolean', value: true, description: 'enable Todo.Txt plugin')
+option('todoist_plugin', type: 'boolean', value: true, description: 'enable Todoist plugin')
+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)')