-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson_options.txt
More file actions
36 lines (32 loc) · 795 Bytes
/
meson_options.txt
File metadata and controls
36 lines (32 loc) · 795 Bytes
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
option(
'linux_window_backend',
type: 'combo',
choices: ['auto', 'x11', 'wayland', 'both'],
value: 'auto',
description: 'Select the GLFW window backend on Linux. auto enables the available backend(s).',
)
option(
'nfd_backend',
type: 'combo',
choices: ['auto', 'portal', 'gtk'],
value: 'auto',
description: 'Linux NFD backend. Prefers portal and falls back to gtk.',
)
option(
'file_dialogs',
type: 'feature',
value: 'auto',
description: 'Build native file dialog support when a platform backend is available.',
)
option(
'profiling',
type: 'boolean',
value: false,
description: 'Enable CPU and GPU debug and profiling information.',
)
option(
'vkrt_version',
type: 'string',
value: 'dev',
description: 'Version string embedded in the binary.',
)