summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2020-03-05 12:58:26 +0100
committerCarlos Garnacho <carlosg@gnome.org>2020-07-17 09:33:38 +0200
commitac3eeb8b730eb6959240c4c236385152bb04143c (patch)
treeecdfe8bbcf67610405c082e02ece8cfa63dda1ec /meson_options.txt
parentfe7736e57a46691cd2b11d48d00fcee199034227 (diff)
downloadtracker-ac3eeb8b730eb6959240c4c236385152bb04143c.tar.gz
build: restore dbus/systemd options
These options were cleaned up but will be good to have again for the portal service. While at it, split the systemd setting into a boolean to enable or disable the feature, and a string option to specify the user units path.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 0cdab073f..1c3372966 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -16,6 +16,12 @@ 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('dbus_services_dir', type: 'string', value: '',
+ description: 'Directory to install D-Bus .service files (or empty to use default)')
+option('systemd_user_services', type: 'boolean', value: true,
+ description: 'Whether to install systemd user .service files')
+option('systemd_user_services_dir', type: 'string', value: '',
+ description: 'Directory to install systemd user unit files (or empty to use default)')
option('test_utils', type: 'boolean', value: true,
description: 'Whether to install the trackertestutils Python package')
option('test_utils_dir', type: 'string', value: '',