forked from freeciv/freeciv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
56 lines (46 loc) · 1.37 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
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
option('ack_experimental',
type: 'boolean',
value: false,
description: 'User acknowledges experimental build')
option('clients',
type: 'array',
choices: ['gtk3.22','sdl2', 'qt'],
value: ['gtk3.22'],
description: 'Clients to build')
option('fcmp',
type: 'array',
choices: ['gtk3','qt','cli','gtk4'],
value: ['gtk3'],
description: 'Modpack installer UIs to build')
option('cacert-path',
type: 'string',
value: '',
description: 'Custom path to CA cert bundle')
option('json-protocol',
type: 'boolean',
value: false,
description: 'Build in json-protocol support')
option('syslua',
type: 'combo',
choices: ['try', 'true', 'false'],
description: 'Use lua from system')
option('audio',
type: 'boolean',
value: true,
description: 'Build in sound support')
option('ruledit',
type: 'boolean',
value: true,
description: 'Build ruleset editor')
option('nls',
type: 'boolean',
value: true,
description: 'Native Language Support')
option('gitrev',
type: 'boolean',
value: false,
description: 'Include git commit id to the version string')
option('freeciv-web',
type: 'boolean',
value: false,
description: 'Make a freeciv-web server build instead of normal one')