-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmeson_options.txt
35 lines (29 loc) · 963 Bytes
/
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
option('glfw_build_examples',
type: 'boolean',
description: 'Build the GLFW example programs',
value: false)
option('glfw_build_tests',
type: 'boolean',
description: 'Build the GLFW test programs',
value: false)
option('glfw_build_docs',
type: 'boolean',
description: 'Build the GLFW documentation',
value: false)
option('glfw_vulkan_static',
type: 'boolean',
description: 'Use the Vulkan loader statically linked into application',
value: false)
option('glfw_use_hybrid_hpg',
type: 'boolean',
description: 'Force use of high-performance GPU on hybrid systems',
value: false)
option('glfw_use_msvc_runtime_library_dll',
type: 'boolean',
description: 'Use MSVC runtime library DLL',
value: true)
option('glfw_backend',
type: 'combo',
description: 'Backend used for window creation',
value: 'auto',
choices: ['auto', 'wayland', 'mir', 'osmesa', 'win32', 'cocoa', 'x11'])