-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmeson_options.txt
102 lines (83 loc) · 1.25 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
# testing options
option('lak_enable_tests',
type: 'boolean',
value: true,
yield: true,
)
# windowing options
option('lak_enable_windowing',
type: 'boolean',
value: true,
yield: true,
)
option('lak_use_native_file_dialog',
type: 'boolean',
value: true,
yield: true,
)
option('lak_run_windowing_tests',
type: 'boolean',
value: false,
yield: true,
)
option('sdl2_from_source',
type: 'boolean',
value: true,
yield: true,
)
option('lak_backend',
type: 'combo',
choices: [
'win32',
'xlib',
'xcb',
'sdl',
'qt',
],
value: 'sdl',
yield: false,
)
option('lak_enable_softrender',
type: 'boolean',
value: true,
yield: true,
)
option('lak_enable_opengl',
type: 'boolean',
value: true,
yield: true,
)
option('lak_enable_vulkan',
type: 'boolean',
value: false,
yield: true,
)
option('lak_enable_metal',
type: 'boolean',
value: false,
yield: true,
)
# llvm options
option('lak_enable_llvm',
type: 'boolean',
value: false,
yield: false,
)
# lmdb options
option('lak_enable_lmdb',
type: 'boolean',
value: true,
yield: true,
)
# glm options
option('lak_enable_glm',
type: 'boolean',
value: true,
yield: true,
)
# dear imgui options
option('lak_enable_imgui',
type: 'boolean',
value: true,
yield: true,
)