summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: b36ba1d1e2410bb4bd8e7ff517a172b1fa81e220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
option('docs', type: 'boolean', value: true,
       description: 'Enable the documentation')
option('fts', type: 'boolean', value: true,
       description: 'Enable the Tracker full-text search feature')
option('functional_tests', type: 'boolean', value: true,
       description: 'Enable the Tracker functional test suite')
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('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)')