meson: convert llvm option to tristate
[mesa.git] / meson_options.txt
1 # Copyright © 2017 Intel Corporation
2
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
12
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 # SOFTWARE.
20
21 option(
22 'platforms',
23 type : 'string',
24 value : 'auto',
25 description : 'comma separated list of window systems to support. If this is set to auto all platforms applicable to the OS will be enabled.'
26 )
27 option(
28 'dri3',
29 type : 'combo',
30 value : 'auto',
31 choices : ['auto', 'true', 'false'],
32 description : 'enable support for dri3'
33 )
34 option(
35 'dri-drivers',
36 type : 'string',
37 value : 'auto',
38 description : 'comma separated list of dri drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
39 )
40 option(
41 'dri-drivers-path',
42 type : 'string',
43 value : '',
44 description : 'Location of dri drivers. Default: $libdir/dri.'
45 )
46 option(
47 'gallium-drivers',
48 type : 'string',
49 value : 'auto',
50 description : 'comma separated list of gallium drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
51 )
52 option(
53 'gallium-media',
54 type : 'string',
55 value : '',
56 description : 'comma separated list of gallium media APIs to build (omx,va,vdpau,xvmc).'
57 )
58 option(
59 'vulkan-drivers',
60 type : 'string',
61 value : 'auto',
62 description : 'comma separated list of vulkan drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
63 )
64 option(
65 'shader-cache',
66 type : 'boolean',
67 value : true,
68 description : 'Build with on-disk shader cache support'
69 )
70 option(
71 'vulkan-icd-dir',
72 type : 'string',
73 value : '',
74 description : 'Location relative to prefix to put vulkan icds on install. Default: $datadir/vulkan/icd.d'
75 )
76 option(
77 'shared-glapi',
78 type : 'boolean',
79 value : true,
80 description : 'Whether to build a shared or static glapi'
81 )
82 option(
83 'gles1',
84 type : 'boolean',
85 value : true,
86 description : 'Build support for OpenGL ES 1.x'
87 )
88 option(
89 'gles2',
90 type : 'boolean',
91 value : true,
92 description : 'Build support for OpenGL ES 2.x and 3.x'
93 )
94 option(
95 'opengl',
96 type : 'boolean',
97 value : true,
98 description : 'Build support for OpenGL (all versions)'
99 )
100 option(
101 'gbm',
102 type : 'combo',
103 value : 'auto',
104 choices : ['auto', 'true', 'false'],
105 description : 'Build support for gbm platform'
106 )
107 option(
108 'glx',
109 type : 'combo',
110 value : 'auto',
111 choices : ['auto', 'disabled', 'dri', 'xlib', 'gallium-xlib'],
112 description : 'Build support for GLX platform'
113 )
114 option(
115 'egl',
116 type : 'combo',
117 value : 'auto',
118 choices : ['auto', 'true', 'false'],
119 description : 'Build support for EGL platform'
120 )
121 option(
122 'glvnd',
123 type : 'boolean',
124 value : false,
125 description : 'Enable GLVND support.'
126 )
127 option(
128 'asm',
129 type : 'boolean',
130 value : true,
131 description : 'Build assembly code if possible'
132 )
133 option(
134 'llvm',
135 type : 'combo',
136 value : 'auto',
137 choices : ['auto', 'true', 'false'],
138 description : 'Build with LLVM support.'
139 )
140 option(
141 'valgrind',
142 type : 'combo',
143 value : 'auto',
144 choices : ['auto', 'true', 'false'],
145 description : 'Build with valgrind support'
146 )
147 option(
148 'libunwind',
149 type : 'combo',
150 value : 'auto',
151 choices : ['auto', 'true', 'false'],
152 description : 'Use libunwind for stack-traces'
153 )
154 option(
155 'build-tests',
156 type : 'boolean',
157 value : false,
158 description : 'Build unit tests. Currently this will build *all* unit tests, which may build more than expected.'
159 )
160 option(
161 'texture-float',
162 type : 'boolean',
163 value : false,
164 description : 'Enable floating point textures and renderbuffers. This option may be patent encumbered, please read docs/patents.txt and consult with your lawyer before turning this on.'
165 )
166 option(
167 'selinux',
168 type : 'boolean',
169 value : false,
170 description : 'Build an SELinux-aware Mesa'
171 )
172 option(
173 'osmesa',
174 type : 'combo',
175 value : 'none',
176 choices : ['none', 'classic', 'gallium'],
177 description : 'Build OSmesa.'
178 )
179 option(
180 'osmesa-bits',
181 type : 'combo',
182 value : '8',
183 choices : ['8', '16', '32'],
184 description : 'Number of channel bits for OSMesa.'
185 )