-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmeson_options.txt
21 lines (18 loc) · 1.17 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
option('avahi', type: 'feature', description: 'Avahi support (using libavahi-client)')
option('curl', type: 'feature', description: 'CURL support')
option('lua', type: 'feature', description: 'Lua support (using luajit)')
option('json', type: 'feature', description: 'JSON support (using nlohman_json)')
option('mariadb', type: 'feature', description: 'MariaDB support')
option('nettle', type: 'feature', description: 'Nettle support')
option('pcre', type: 'feature', description: 'PCRE support')
option('pg', type: 'feature', description: 'PostgreSQL support (using libpq)')
option('sodium', type: 'feature', description: 'libsodium support')
option('uring', type: 'feature', description: 'enable io_uring (using liburing)')
option('was', type: 'feature', description: 'WAS support')
option('seccomp', type: 'feature', description: 'seccomp support (using libseccomp)')
option('cap', type: 'feature', description: 'Linux capability support (using libcap)')
option('test', type: 'feature', description: 'Build unit tests')
option('fuzzer', type: 'boolean', value: false,
description: 'Build fuzzers')
option('libfuzzer', type: 'boolean', value: false,
description: 'use libFuzzers')