-
Notifications
You must be signed in to change notification settings - Fork 2
/
meson_options.txt
163 lines (126 loc) · 3.47 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
# languages
option('lang_ctu', type : 'feature',
description : 'build the ctu language driver',
value : 'auto'
)
option('lang_pl0', type : 'feature',
description : 'build the pl0 language driver',
value : 'auto'
)
option('lang_oberon', type : 'feature',
description : 'build the oberon-2 language driver',
value : 'auto'
)
option('lang_example', type : 'feature',
description : 'build the example language driver',
value : 'auto'
)
option('lang_cc', type : 'feature',
description : 'build the c language driver',
value : 'disabled'
)
option('lang_sql', type : 'feature',
description : 'build the sql language driver',
value : 'disabled'
)
# interfaces
option('frontend_cli', type : 'feature',
description : 'build the cli frontend',
value : 'auto'
)
option('frontend_example', type : 'feature',
description : 'build the example frontend',
value : 'auto'
)
option('frontend_gui', type : 'feature',
description : 'build gui frontend (requires c++ compiler)',
value : 'auto'
)
# targets
option('target_cfamily', type : 'feature',
description : 'Generates C89 code from the ssa form',
value : 'auto'
)
option('target_debug', type : 'feature',
description : 'Debug output for both tree and ssa forms',
value : 'auto'
)
option('target_hlsl', type : 'feature',
description : 'Emits HLSL code from the tree form',
value : 'disabled'
)
option('target_llvm', type : 'feature',
description : 'Emits LLVM IR code from the ssa form',
value : 'disabled'
)
# plugins
option('plugin_timer', type : 'feature',
description : 'enable timer plugin',
value : 'auto'
)
# trace options
option('trace_memory', type : 'feature',
description : 'enable memory allocation tracing',
value : 'auto'
)
option('asserts', type : 'feature',
description : 'enable assertions, enabled by default in debug builds',
value : 'auto'
)
option('paranoid', type : 'feature',
description : 'enable paranoid assertions',
value : 'auto'
)
option('trace_time', type : 'feature',
description : 'profile the build process using clang time trace, also requires ninjatracing to generate the report',
value : 'auto'
)
# testing options
option('unit_tests', type : 'feature',
description : 'enable unit tests',
value : 'auto'
)
option('driver_tests', type : 'feature',
description : 'enable end-to-end driver tests',
value : 'auto'
)
# doxygen options
option('doxygen', type : 'feature',
description : 'build doxygen docs',
value : 'auto'
)
# build options
option('analyze', type : 'feature',
description : 'enable static code analysis',
value : 'disabled'
)
option('stb_sprintf', type : 'feature',
description : 'use stb_sprintf instead of the libc printf',
value : 'auto'
)
option('os_like', type : 'combo',
description : 'set the os platform to target if autodetection fails',
choices : ['auto', 'posix', 'win32'],
value : 'auto'
)
# tools
option('tool_notify', type : 'feature',
description : 'notify testing tool',
value : 'auto'
)
option('tool_diagnostic', type : 'feature',
description : 'diagnostic search tool',
value : 'auto'
)
option('tool_display', type : 'feature',
description : 'format testing tool',
value : 'auto'
)
option('tool_error', type : 'feature',
description : 'backtrace exception testing tool',
value : 'auto'
)
option('tool_tar', type : 'feature',
description : 'tar library frontend',
value : 'auto'
)