-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmeson_options.txt
More file actions
72 lines (59 loc) · 1.95 KB
/
Copy pathmeson_options.txt
File metadata and controls
72 lines (59 loc) · 1.95 KB
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
option('build-client',
type: 'boolean',
value: true,
description: 'Build the unified FnQuake3 client executable')
option('build-server',
type: 'boolean',
value: true,
description: 'Build the dedicated server executable')
option('renderer-dlopen',
type: 'boolean',
value: true,
description: 'Build one client executable and load renderers from external shared libraries')
option('renderers',
type: 'array',
choices: ['glx', 'vk', 'rtx'],
value: ['glx', 'vk', 'rtx'],
description: 'Renderer modules to build when renderer-dlopen is enabled')
option('renderer-default',
type: 'combo',
choices: ['glx', 'vk', 'rtx'],
value: 'glx',
description: 'Default cl_renderer value, or the linked renderer for static renderer builds')
option('sdl',
type: 'feature',
value: 'auto',
description: 'SDL3 video, input, and audio backend')
option('curl',
type: 'feature',
value: 'auto',
description: 'cURL support for HTTP/FTP downloads')
option('curl-dlopen',
type: 'combo',
choices: ['auto', 'true', 'false'],
value: 'auto',
description: 'Resolve cURL at runtime instead of linking libcurl (auto: linked on Windows, runtime elsewhere)')
option('system-jpeg',
type: 'boolean',
value: false,
description: 'Require the system JPEG library instead of allowing the libjpeg-turbo subproject fallback')
option('ogg-vorbis',
type: 'boolean',
value: true,
description: 'Enable Ogg Vorbis codec support using system vorbisfile or the subproject fallback')
option('local-headers',
type: 'boolean',
value: true,
description: 'Define USE_LOCAL_HEADERS for compatibility include conventions')
option('default-basedir',
type: 'string',
value: '',
description: 'Compile-time DEFAULT_BASEDIR override')
option('audio-tests',
type: 'boolean',
value: true,
description: 'Build audio tools and deterministic audio tests')
option('glx-tests',
type: 'boolean',
value: true,
description: 'Build deterministic GLx renderer logic tests')