summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: 0c5d7c7d7e993deafadd57029d4d870b35b29ffc (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
option('gssapi',
  type : 'feature',
  value : 'auto',
  description : 'Build with GSSAPI support'
)

option('krb5_config',
  type : 'string',
  value : '',
  description : 'Where to look for krb5-config, path points to krb5-config installation (defaultly looking in PATH)'
)

option('ntlm',
  type : 'feature',
  value : 'auto',
  description : 'Build with NTLM support'
)

option('ntlm_auth',
  type : 'string',
  value : 'ntlm_auth',
  description : 'Where to look for ntlm_auth, path points to ntlm_auth installation (defaultly looking in PATH)'
)

option('brotli',
  type : 'feature',
  value : 'auto',
  description : 'Build with Brotli decompression support'
)

option('tls_check',
  type : 'boolean',
  value : true,
  description : 'Enable TLS support through glib-networking. If you are building a package, you can disable this to allow building libsoup anyway (since glib-networking is not actually required at compile time), but you should be sure to add a runtime dependency on it.'
)

option('introspection',
  type : 'feature',
  value : 'auto',
  yield : true,
  description : 'Build GObject Introspection data'
)

option('vapi',
  type : 'feature',
  value : 'auto',
  description : 'Build Vala bindings'
)

option('docs',
  type: 'feature',
  value: 'auto',
  description: 'Enable generating the API reference'
)

option('doc_tests',
  type: 'boolean',
  value: false,
  description: 'Enable strict validation of API docs'
)

option('tests',
  type: 'boolean',
  value: true,
  description: 'Enable unit tests compilation'
)

option('autobahn',
  type: 'feature',
  value: 'auto',
  description: 'Enable autobahn test suite'
)

option('installed_tests',
  type: 'boolean',
  value: false,
  description: 'Install tests for as-installed testing'
)

option('sysprof',
  type: 'feature',
  value: 'auto',
  description: 'enable sysprof-capture support for profiling'
)

option('fuzzing',
  type: 'feature',
  value: 'disabled',
  description: 'enable fuzzing support'
)

option('pkcs11_tests',
  type: 'feature',
  value: 'auto',
  description: 'enable PKCS #11 tests depending on gnutls'
)