summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2019-02-14 21:27:17 +0200
committerMart Raudsepp <leio@gentoo.org>2019-02-14 21:28:59 +0200
commitcfab5f96042d31f603cf176e408269ec60fe581b (patch)
tree0583c1f1e0c08a59d06993a565f84959ec001a3c /meson_options.txt
parenta955347207e2c7e3524ffbf3203913f1a38175bb (diff)
downloadtracker-cfab5f96042d31f603cf176e408269ec60fe581b.tar.gz
build: Use meson feature option type where appropriate
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 b36ba1d1e..9443b8b1e 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -7,10 +7,10 @@ option('functional_tests', type: 'boolean', value: true,
option('journal', type: 'boolean', value: true,
description: 'Enable database journal backup mechanism')
-option('network_manager', type: 'combo', choices: ['auto', 'no', 'yes'], value: 'auto',
- description: 'Enable connection detection through NetworkManager')
-option('stemmer', type: 'combo', choices: ['auto', 'no', 'yes'], value: 'auto',
- description: 'Enable stemming words while indexing')
+option('network_manager', type: 'feature', value: 'auto',
+ description: 'Connection detection through NetworkManager')
+option('stemmer', type: 'feature', value: 'auto',
+ description: 'Stemming words while indexing')
option('unicode_support', type: 'combo', choices: ['icu', 'unistring', 'auto'], value: 'auto',
description: 'Unicode support library to use')