driconf: drop 6% french translation
[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],
175 gnu_symbol_visibility : 'hidden',
176 build_by_default : false
177 )
178
179 idep_mesautil = declare_dependency(
180 link_with : _libmesa_util,
181 include_directories : inc_util,
182 dependencies : [dep_zlib, dep_clock, dep_thread, dep_atomic, dep_m],
183 )
184
185 _libxmlconfig = static_library(
186 'xmlconfig',
187 files_xmlconfig,
188 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
189 dependencies : [idep_mesautil, dep_expat, dep_m],
190 c_args : [
191 c_msvc_compat_args,
192 '-DSYSCONFDIR="@0@"'.format(
193 join_paths(get_option('prefix'), get_option('sysconfdir'))
194 ),
195 '-DDATADIR="@0@"'.format(
196 join_paths(get_option('prefix'), get_option('datadir'))
197 ),
198 ],
199 gnu_symbol_visibility : 'hidden',
200 build_by_default : false,
201 )
202
203 idep_xmlconfig = declare_dependency(
204 dependencies : [idep_xmlconfig_headers, dep_expat],
205 link_with : _libxmlconfig,
206 )
207
208 if with_tests
209 test(
210 'u_atomic',
211 executable(
212 'u_atomic_test',
213 files('u_atomic_test.c'),
214 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
215 dependencies : idep_mesautil,
216 c_args : [c_msvc_compat_args],
217 ),
218 suite : ['util'],
219 )
220
221 test(
222 'blob',
223 executable(
224 'blob_test',
225 files('blob_test.c'),
226 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
227 dependencies : idep_mesautil,
228 c_args : [c_msvc_compat_args],
229 ),
230 suite : ['util'],
231 )
232
233 test(
234 'rb_tree',
235 executable(
236 'rb_tree_test',
237 files('rb_tree_test.c'),
238 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
239 dependencies : idep_mesautil,
240 c_args : [c_msvc_compat_args],
241 ),
242 suite : ['util'],
243 )
244
245 test(
246 'roundeven',
247 executable(
248 'roundeven_test',
249 files('roundeven_test.c'),
250 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
251 c_args : [c_msvc_compat_args],
252 dependencies : [dep_m],
253 ),
254 suite : ['util'],
255 should_fail : meson.get_cross_property('xfail', '').contains('roundeven'),
256 )
257
258 # FIXME: this test crashes on windows
259 if host_machine.system() != 'windows'
260 test(
261 'mesa-sha1',
262 executable(
263 'mesa-sha1_test',
264 files('mesa-sha1_test.c'),
265 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
266 link_with : _libmesa_util,
267 c_args : [c_msvc_compat_args],
268 ),
269 suite : ['util'],
270 )
271 endif
272
273 test(
274 'bitset',
275 executable(
276 'bitset_test',
277 files('bitset_test.cpp'),
278 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
279 dependencies : [idep_mesautil, idep_gtest],
280 ),
281 suite : ['util'],
282 )
283
284 process_test_exe = executable(
285 'process_test',
286 files('process_test.c'),
287 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
288 dependencies : idep_mesautil,
289 c_args : [c_msvc_compat_args],
290 )
291 if (host_machine.system() == 'windows' and build_machine.system() != 'windows')
292 # This conversion is only required on mingw crosscompilers, otherwise we hit at least one of these issues
293 # https://gitlab.freedesktop.org/mesa/mesa/-/issues/2690
294 # https://gitlab.freedesktop.org/mesa/mesa/-/issues/2788
295 prog_winepath = find_program('winepath')
296 process_test_exe_full_path = run_command(
297 prog_winepath, '-w', process_test_exe.full_path()
298 ).stdout().strip()
299 else
300 process_test_exe_full_path = process_test_exe.full_path()
301 endif
302
303 test(
304 'process',
305 process_test_exe,
306 suite : ['util'],
307 env: ['BUILD_FULL_PATH='+process_test_exe_full_path]
308 )
309
310 subdir('tests/fast_idiv_by_const')
311 subdir('tests/fast_urem_by_const')
312 subdir('tests/hash_table')
313 if not (host_machine.system() == 'windows' and cc.get_id() == 'gcc')
314 # FIXME: These tests fail with mingw, but not with msvc.
315 subdir('tests/string_buffer')
316 endif
317 if cc.has_header('sys/time.h') # MinGW has this, but Vanilla windows doesn't
318 subdir('tests/timespec')
319 endif
320 subdir('tests/vma')
321 subdir('tests/set')
322 subdir('tests/sparse_array')
323 subdir('tests/format')
324 subdir('tests/vector')
325 endif