-
Notifications
You must be signed in to change notification settings - Fork 117
/
meson_options.txt
27 lines (24 loc) · 1.26 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- mode: meson -*-
# SPDX-License-Identifier: LGPL-2.1+
option('fuse', type : 'boolean', value : true,
description : 'build the FUSE integration (requires fuse-devel)')
option('selinux', type : 'boolean', value : true,
description : 'build the SELinux backend (requires libselinux-devel)')
option('udev', type : 'boolean', value : true,
description : 'build the libudev integration (requires libudev-devel)')
option('udevrulesdir', type : 'string', value: '',
description: 'Path where udev rules are installed to (Defaults to udevdir specified in udev.pc)')
option('man', type : 'boolean', value : true,
description : 'build and install man pages (requires sphinx-build')
option('libzstd', type : 'feature',
description : 'link to libzstd')
option('liblzma', type : 'feature',
description : 'link to liblzma (for XZ compression)')
option('libz', type : 'feature',
description : 'link to zlib')
option('oss-fuzz', type : 'boolean', value : 'false',
description : 'build against oss-fuzz')
option('llvm-fuzz', type : 'boolean', value : 'false',
description : 'build against LLVM libFuzzer')
option('bashcompletiondir', type : 'string',
description : 'directory for bash completion scripts ["no" disables]')