summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: 4ab97a1b11c72dd1015d49a5ec78eecf8ceb127d (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
option('profile',
  type: 'combo',
  choices: [ 'default', 'development' ],
  value: 'default',
  description: 'Indicate whether this is a nightly build (used for CI purposes)',
)
option('camera',
  type: 'boolean',
  value: true,
  description: 'Support creaing an avatar with the webcam using the XDG camera portal',
)
option('manpage',
  type: 'boolean',
  value: true,
  description: 'Enable building man pages.',
)
option('docs',
  type: 'boolean',
  value: false,
  description: 'Whether to build the valadoc docs.',
)
option('goa',
  type: 'boolean',
  value: true,
  description: 'Whether to build with GNOME Online Accounts support.',
)