summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: f67f3bf90b8d82c4812d17b338963bf14ea83b46 (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
option('ca_certificates',
  type: 'boolean',
  value: false,
  description: 'Whether to use a pre-specified Certificate Authority list (see the ca_certificates_path option)',
)
option('ca_certificates_path',
  type: 'string',
  value: '',
  description: 'List of paths to the system Certificate Authority list. If empty, a default set of paths will be tried.',
)
option('introspection',
  type: 'boolean',
  value: true,
  description: 'Generate GObject Introspection (.gir) files',
)
option('vapi',
  type: 'boolean',
  value: false,
  description: 'Generate VAPI file for Vala',
)
option('examples',
  type: 'boolean',
  value: true,
  description: 'Build the examples',
)
option('gtk_doc',
  type: 'boolean',
  value: true,
  description: 'Build the gtk-doc reference docs',
)
option('soup2',
  type: 'boolean',
  value: false,
  description: 'Whether to build with libsoup2',
)
option('tests',
  type: 'boolean',
  value: true,
  description: 'Whether to build the tests',
)