summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorQuentin Glidic <sardemff7+git@sardemff7.net>2019-03-26 12:10:09 +0100
committerQuentin Glidic <sardemff7+git@sardemff7.net>2019-03-26 12:10:09 +0100
commit16c77ea3cef5d4c38ec0ad40eea1551682595863 (patch)
treee6cdc0c2b73015bfb881ea7665690110e8e0dd2c /meson_options.txt
parent0657107fd588fda8320d97a8960f7aa75753190e (diff)
meson: Drop enable- prefix for options
This is the preferred way for Meson projects Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
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 4534df7b..03b5ace9 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,4 +1,4 @@
-option('enable-drun', type: 'boolean', value: true, description: 'Desktop file mode')
-option('enable-window', type: 'boolean', value: true, description: 'Window switcher mode')
-option('enable-timings', type: 'boolean', value: false, description: 'Timings output')
-option('enable-check', type: 'boolean', value: true, description: 'Build and run libcheck-based tests')
+option('drun', type: 'boolean', value: true, description: 'Desktop file mode')
+option('window', type: 'boolean', value: true, description: 'Window switcher mode')
+option('timings', type: 'boolean', value: false, description: 'Timings output')
+option('check', type: 'boolean', value: true, description: 'Build and run libcheck-based tests')