util/format: Add VK_FORMAT_D16_UNORM_S8_UINT.
[mesa.git] / src / util / meson.build
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 inc_util = include_directories('.')
22
23 subdir('format')
24 subdir('xmlpool')
25
26 files_mesa_util = files(
27 'anon_file.h',
28 'anon_file.c',
29 'bigmath.h',
30 'bitscan.c',
31 'bitscan.h',
32 'bitset.h',
33 'blob.c',
34 'blob.h',
35 'build_id.c',
36 'build_id.h',
37 'compiler.h',
38 'crc32.c',
39 'crc32.h',
40 'dag.c',
41 'debug.c',
42 'debug.h',
43 'disk_cache.c',
44 'disk_cache.h',
45 'double.c',
46 'double.h',
47 'fast_idiv_by_const.c',
48 'fast_idiv_by_const.h',
49 'format_r11g11b10f.h',
50 'format_rgb9e5.h',
51 'format_srgb.h',
52 'futex.h',
53 'half_float.c',
54 'half_float.h',
55 'hash_table.c',
56 'hash_table.h',
57 'list.h',
58 'macros.h',
59 'mesa-sha1.c',
60 'mesa-sha1.h',
61 'os_time.c',
62 'os_time.h',
63 'os_file.c',
64 'os_misc.c',
65 'os_misc.h',
66 'os_socket.c',
67 'os_socket.h',
68 'u_process.c',
69 'u_process.h',
70 'sha1/sha1.c',
71 'sha1/sha1.h',
72 'ralloc.c',
73 'ralloc.h',
74 'rand_xor.c',
75 'rand_xor.h',
76 'rb_tree.c',
77 'rb_tree.h',
78 'register_allocate.c',
79 'register_allocate.h',
80 'rgtc.c',
81 'rgtc.h',
82 'rounding.h',
83 'set.c',
84 'set.h',
85 'simple_list.h',
86 'simple_mtx.h',
87 'slab.c',
88 'slab.h',
89 'softfloat.c',
90 'softfloat.h',
91 'sparse_array.c',
92 'sparse_array.h',
93 'string_buffer.c',
94 'string_buffer.h',
95 'strndup.h',
96 'strtod.c',
97 'strtod.h',
98 'texcompress_rgtc_tmp.h',
99 'timespec.h',
100 'u_atomic.c',
101 'u_atomic.h',
102 'u_dynarray.h',
103 'u_endian.h',
104 'u_queue.c',
105 'u_queue.h',
106 'u_string.h',
107 'u_thread.h',
108 'u_vector.c',
109 'u_vector.h',
110 'u_math.c',
111 'u_math.h',
112 'u_memset.h',
113 'u_mm.c',
114 'u_mm.h',
115 'u_debug.c',
116 'u_debug.h',
117 'u_debug_memory.c',
118 'u_cpu_detect.c',
119 'u_cpu_detect.h',
120 'vma.c',
121 'vma.h',
122 'xxhash.h',
123 )
124
125 files_drirc = files('00-mesa-defaults.conf')
126
127 install_data(files_drirc, install_dir : join_paths(get_option('datadir'), 'drirc.d'))
128
129 if with_tests
130 prog_xmllint = find_program('xmllint', required : false, native : true)
131 if prog_xmllint.found()
132 test(
133 'drirc xml validation',
134 prog_xmllint,
135 args : ['--noout', '--valid', files_drirc],
136 suite : ['util'],
137 )
138 endif
139 endif
140
141 files_xmlconfig = files(
142 'xmlconfig.c',
143 'xmlconfig.h',
144 )
145
146 format_srgb = custom_target(
147 'format_srgb',
148 input : ['format_srgb.py'],
149 output : 'format_srgb.c',
150 command : [prog_python, '@INPUT0@'],
151 capture : true,
152 )
153
154 deps_for_libmesa_util = [
155 dep_zlib,
156 dep_clock,
157 dep_thread,
158 dep_atomic,
159 dep_m,
160 dep_valgrind,
161 dep_zstd,
162 ]
163
164 if with_platform_android
165 deps_for_libmesa_util += dep_android
166 endif
167
168 _libmesa_util = static_library(
169 'mesa_util',
170 [files_mesa_util, format_srgb],
171 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
172 dependencies : deps_for_libmesa_util,
173 link_with: libmesa_format,
174 c_args : [c_msvc_compat_args, c_vis_args],
175 build_by_default : false
176 )
177
178 idep_mesautil = declare_dependency(
179 link_with : _libmesa_util,
180 include_directories : inc_util,
181 dependencies : [dep_zlib, dep_clock, dep_thread, dep_atomic, dep_m],
182 )
183
184 _libxmlconfig = static_library(
185 'xmlconfig',
186 files_xmlconfig,
187 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
188 dependencies : [idep_mesautil, dep_expat, dep_m],
189 c_args : [
190 c_msvc_compat_args, c_vis_args,
191 '-DSYSCONFDIR="@0@"'.format(
192 join_paths(get_option('prefix'), get_option('sysconfdir'))
193 ),
194 '-DDATADIR="@0@"'.format(
195 join_paths(get_option('prefix'), get_option('datadir'))
196 ),
197 ],
198 build_by_default : false,
199 )
200
201 idep_xmlconfig = declare_dependency(
202 dependencies : [idep_xmlconfig_headers, dep_expat],
203 link_with : _libxmlconfig,
204 )
205
206 if with_tests
207 test(
208 'u_atomic',
209 executable(
210 'u_atomic_test',
211 files('u_atomic_test.c'),
212 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
213 dependencies : idep_mesautil,
214 c_args : [c_msvc_compat_args],
215 ),
216 suite : ['util'],
217 )
218
219 test(
220 'blob',
221 executable(
222 'blob_test',
223 files('blob_test.c'),
224 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
225 dependencies : idep_mesautil,
226 c_args : [c_msvc_compat_args],
227 ),
228 suite : ['util'],
229 )
230
231 test(
232 'rb_tree',
233 executable(
234 'rb_tree_test',
235 files('rb_tree_test.c'),
236 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
237 dependencies : idep_mesautil,
238 c_args : [c_msvc_compat_args],
239 ),
240 suite : ['util'],
241 )
242
243 test(
244 'roundeven',
245 executable(
246 'roundeven_test',
247 files('roundeven_test.c'),
248 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
249 c_args : [c_msvc_compat_args],
250 dependencies : [dep_m],
251 ),
252 suite : ['util'],
253 should_fail : meson.get_cross_property('xfail', '').contains('roundeven'),
254 )
255
256 # FIXME: this test crashes on windows
257 if host_machine.system() != 'windows'
258 test(
259 'mesa-sha1',
260 executable(
261 'mesa-sha1_test',
262 files('mesa-sha1_test.c'),
263 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
264 link_with : _libmesa_util,
265 c_args : [c_msvc_compat_args],
266 ),
267 suite : ['util'],
268 )
269 endif
270
271 test(
272 'bitset',
273 executable(
274 'bitset_test',
275 files('bitset_test.cpp'),
276 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
277 dependencies : [idep_mesautil, idep_gtest],
278 ),
279 suite : ['util'],
280 )
281
282 process_test_exe = executable(
283 'process_test',
284 files('process_test.c'),
285 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
286 dependencies : idep_mesautil,
287 c_args : [c_msvc_compat_args],
288 )
289 if (host_machine.system() == 'windows' and build_machine.system() != 'windows')
290 # This conversion is only required on mingw crosscompilers, otherwise we hit at least one of these issues
291 # https://gitlab.freedesktop.org/mesa/mesa/-/issues/2690
292 # https://gitlab.freedesktop.org/mesa/mesa/-/issues/2788
293 prog_winepath = find_program('winepath')
294 process_test_exe_full_path = run_command(
295 prog_winepath, '-w', process_test_exe.full_path()
296 ).stdout().strip()
297 else
298 process_test_exe_full_path = process_test_exe.full_path()
299 endif
300
301 test(
302 'process',
303 process_test_exe,
304 suite : ['util'],
305 env: ['BUILD_FULL_PATH='+process_test_exe_full_path]
306 )
307
308 subdir('tests/fast_idiv_by_const')
309 subdir('tests/fast_urem_by_const')
310 subdir('tests/hash_table')
311 if not (host_machine.system() == 'windows' and cc.get_id() == 'gcc')
312 # FIXME: These tests fail with mingw, but not with msvc.
313 subdir('tests/string_buffer')
314 endif
315 if cc.has_header('sys/time.h') # MinGW has this, but Vanilla windows doesn't
316 subdir('tests/timespec')
317 endif
318 subdir('tests/vma')
319 subdir('tests/set')
320 subdir('tests/sparse_array')
321 subdir('tests/format')
322 subdir('tests/vector')
323 endif