forked from freeciv/freeciv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
115 lines (94 loc) · 3.02 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
option('clients',
type: 'array',
choices: ['gtk3.22','sdl2', 'qt', 'gtk4', 'stub', 'sdl3', 'gtk4x'],
value: ['gtk4'],
description: 'Clients to build')
option('fcmp',
type: 'array',
choices: ['gtk3','qt','cli','gtk4', 'gtk4x'],
value: ['gtk4'],
description: 'Modpack installer UIs to build')
option('cacert-path',
type: 'string',
value: '',
description: 'Custom path to CA cert bundle')
option('followtag',
type: 'string',
value: '',
description: 'Custom followtag')
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('sys-tolua-cmd',
type: 'boolean',
value: false,
description: 'Use tolua cmd from the system even for native builds')
option('mwand',
type: 'combo',
choices: ['try', 'true', 'false'],
description: 'Build MagickWand support to mapimg')
option('readline',
type: 'combo',
choices: ['try', 'true', 'false'],
description: 'Enable readline functionality')
option('audio',
type: 'combo',
choices: ['none', 'sdl2', 'sdl3'],
value: 'sdl2',
description: 'Sound support type to build')
option('tools',
type: 'array',
choices: ['ruledit', 'manual', 'ruleup'],
value: ['ruledit', 'manual', 'ruleup'],
description: 'Extra tools to build')
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('server',
type: 'combo',
choices: ['disabled', 'enabled', 'freeciv-web' ],
value: 'enabled',
description: 'What kind of server should be build, if any')
option('appimage',
type: 'boolean',
value: false,
description: 'Make a build suitable for AppImage packaging')
option('gen-packets-args',
type: 'array',
value: [],
description: 'Additional arguments for the packet generator')
option('qtver',
type: 'combo',
choices: ['qt5', 'qt6', 'qt6x'],
value: 'qt6',
description: 'Whether to build Qt5, Qt6, or experimental Qt6 versions of the binaries')
option('project-definition',
type: 'string',
value: '',
description: 'File with project definition')
option('min-win-ver',
type: 'string',
value: '',
description: 'Minimum Windows version to support')
option('svgflags',
type: 'boolean',
value: false,
description: 'svg flags features enabled on build level')
option('localeprefix',
type: 'string',
value: '',
description: 'Localedir prefix to use instead of regular prefix')
option('python',
type: 'string',
value: 'python3',
description: 'Python interpreter to use')