summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorSam Thursfield <sam@afuera.me.uk>2020-02-25 14:46:20 +0100
committerSam Thursfield <sam@afuera.me.uk>2020-02-25 14:49:09 +0100
commitd318ebeb5d4f984c61373b492d86ca50fbfd71dc (patch)
treebadf0d8357b424cfa49d7b681122433f70be0f40 /meson_options.txt
parent7d3fd94487b164a0fe45e4b60926a0a77da1667d (diff)
downloadtracker-d318ebeb5d4f984c61373b492d86ca50fbfd71dc.tar.gz
Clean up Meson options
Fixes https://gitlab.gnome.org/GNOME/tracker-miners/issues/49
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt16
1 files changed, 6 insertions, 10 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 3d01836ab..e29aaaa84 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,10 +1,8 @@
-option('docs', type: 'boolean', value: false,
+option('docs', type: 'boolean', value: false, yield: true,
description: 'Generate API documentation with gtk-doc')
option('fts', type: 'boolean', value: true,
description: 'Enable the Tracker full-text search feature')
-option('journal', type: 'boolean', value: true,
- description: 'Enable database journal backup mechanism')
-option('man', type: 'boolean', value: true,
+option('man', type: 'boolean', value: true, yield: true,
description: 'Install man pages')
option('override_sqlite_version_check', type: 'boolean', value: false,
description: 'Override checks for broken sqlite versions')
@@ -16,12 +14,10 @@ option('stemmer', type: 'feature', value: 'auto',
option('unicode_support', type: 'combo', choices: ['icu', 'unistring', 'auto'], value: 'auto',
description: 'Unicode support library to use')
-option('bash_completion', type: 'string', value: 'yes',
- description: 'Directory to install Bash completion files (or "yes" for default directory, "no" to disable installation')
-option('dbus_services', type: 'string', value: '',
- description: 'Directory to install D-Bus .service files (leave blank to use the value from dbus-1.pc)')
-option('systemd_user_services', type: 'string', value: 'yes',
- description: 'Directory to install systemd user .service files (or "yes" for default directory, "no" to disable installation)')
+option('bash_completion', type: 'boolean', value: true,
+ description: 'Whether to install Bash completion files')
+option('bash_completion_dir', type: 'string',
+ description: 'Directory to install Bash completion files')
option('test_utils', type: 'boolean', value: true,
description: 'Whether to install the trackertestutils Python package')
option('test_utils_dir', type: 'string', value: '',