summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: 49f7a2daa0c4dd048bd0ae0a336c1c9f5771af83 (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
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('examples',
  type: 'boolean',
  value: true,
  description: 'Build the examples',
)
option('gtk_doc',
  type: 'boolean',
  value: false,
  description: 'Build the gtk-doc reference docs',
)
option('soup2',
  type: 'boolean',
  value: true,
  description: 'Whether to build with libsoup2',
)