-
Notifications
You must be signed in to change notification settings - Fork 88
/
meson_options.txt
192 lines (155 loc) · 4.2 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
option('anticheat-server',
type: 'boolean',
value: false,
description: 'Enable r1ch.net anticheat server interface')
option('auto-reply',
type: 'boolean',
value: true,
description: 'Make client auto reply to !version chat probes')
option('avcodec',
type: 'feature',
value: 'auto',
description: 'libavcodec support')
option('base-game',
type: 'string',
value: 'baseq2',
description: 'Name of the base game directory')
option('client-gtv',
type: 'boolean',
value: false,
description: 'Experimental client GTV relay')
option('client-ui',
type: 'boolean',
value: true,
description: 'Enable menu-based user interface')
option('default-game',
type: 'string',
value: '',
description: 'Default value for "game" console variable')
option('game-abi-hack',
type: 'feature',
value: 'disabled',
description: 'Enable this option on i386 Linux to build a server capable of '+
'loading closed source game mods built using ancient GCC versions.')
option('game-build-options',
type: 'array',
value: [],
description: 'Custom game build options for LTO, etc')
option('game-new-api',
type: 'boolean',
value: false,
description: 'Build game using new API for big maps support')
option('homedir',
type: 'string',
value: '~/.q2pro',
description: 'Default value for "homedir" console variable')
option('icmp-errors',
type: 'feature',
value: 'auto',
description: 'Handle ICMP errors on UDP sockets')
option('libcurl',
type: 'feature',
value: 'auto',
description: 'libcurl support')
option('libjpeg',
type: 'feature',
value: 'auto',
description: 'libjpeg support')
option('libpng',
type: 'feature',
value: 'auto',
description: 'libpng support')
option('md3',
type: 'boolean',
value: true,
description: 'MD3 models support')
option('md5',
type: 'boolean',
value: true,
description: 'MD5 (re-release) models support')
option('mvd-client',
type: 'boolean',
value: true,
description: 'Enable MVD/GTV client functionality. '+
'Use this for hosting a GTV relay server.')
option('mvd-server',
type: 'boolean',
value: true,
description: 'Enable local MVD recording and MVD/GTV server functionality. '+
'Use this for hosting a GTV-capable game server.')
option('openal',
type: 'feature',
value: 'auto',
description: 'OpenAL sound backend')
option('opengl-es1',
type: 'boolean',
value: false,
description: 'Build OpenGL ES 1 compatible renderer')
option('packetdup-hack',
type: 'boolean',
value: false,
description: 'Server side packet duplication hack')
option('save-games',
type: 'boolean',
value: true,
description: 'Server side support for savegames')
option('sdl2',
type: 'feature',
value: 'auto',
description: 'SDL2 video and audio drivers')
option('software-sound',
type: 'feature',
value: 'auto',
description: 'Software sound backend')
option('system-console',
type: 'boolean',
value: true,
description: 'Enhanced system console support')
option('system-wide',
type: 'boolean',
value: true,
description: 'Enable system-wide installation')
option('tests',
type: 'boolean',
value: false,
description: 'Enable ***dangerous*** built-in testing code. Never use in release builds!')
option('tga',
type: 'boolean',
value: true,
description: 'TGA images support')
option('variable-fps',
type: 'boolean',
value: false,
description: 'Support for variable server FPS in both client and server')
option('vid-geometry',
type: 'string',
value: '640x480',
description: 'Default window geometry')
option('vid-modelist',
type: 'string',
value: '640x480 800x600 1024x768',
description: 'Default video mode list')
option('wayland',
type: 'feature',
value: 'auto',
description: 'Wayland video driver')
option('windows-crash-dumps',
type: 'feature',
value: 'auto',
description: 'Windows crash dumps')
option('windows-egl',
type: 'boolean',
value: true,
description: 'Windows EGL video driver')
option('windows-service',
type: 'boolean',
value: true,
description: 'Support for running dedicated server as Windows service')
option('x11',
type: 'feature',
value: 'auto',
description: 'X11 video driver')
option('zlib',
type: 'feature',
value: 'auto',
description: 'zlib support')