88c6ab2d2a8f2d770705a63e981bdc9121a34cf1
[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 'crc32.c',
38 'crc32.h',
39 'dag.c',
40 'debug.c',
41 'debug.h',
42 'disk_cache.c',
43 'disk_cache.h',
44 'double.c',
45 'double.h',
46 'fast_idiv_by_const.c',
47 'fast_idiv_by_const.h',
48 'format_r11g11b10f.h',
49 'format_rgb9e5.h',
50 'format_srgb.h',
51 'futex.h',
52 'half_float.c',
53 'half_float.h',
54 'hash_table.c',
55 'hash_table.h',
56 'list.h',
57 'macros.h',
58 'mesa-sha1.c',
59 'mesa-sha1.h',
60 'os_time.c',
61 'os_time.h',
62 'os_file.c',
63 'os_misc.c',
64 'os_misc.h',
65 'os_socket.c',
66 'os_socket.h',
67 'u_process.c',
68 'u_process.h',
69 'sha1/sha1.c',
70 'sha1/sha1.h',
71 'ralloc.c',
72 'ralloc.h',
73 'rand_xor.c',
74 'rand_xor.h',
75 'rb_tree.c',
76 'rb_tree.h',
77 'register_allocate.c',
78 'register_allocate.h',
79 'rgtc.c',
80 'rgtc.h',
81 'rounding.h',
82 'set.c',
83 'set.h',
84 'simple_list.h',
85 'simple_mtx.h',
86 'slab.c',
87 'slab.h',
88 'softfloat.c',
89 'softfloat.h',
90 'sparse_array.c',
91 'sparse_array.h',
92 'string_buffer.c',
93 'string_buffer.h',
94 'strndup.h',
95 'strtod.c',
96 'strtod.h',
97 'texcompress_rgtc_tmp.h',
98 'timespec.h',
99 'u_atomic.c',
100 'u_atomic.h',
101 'u_dynarray.h',
102 'u_endian.h',
103 'u_queue.c',
104 'u_queue.h',
105 'u_string.h',
106 'u_thread.h',
107 'u_vector.c',
108 'u_vector.h',
109 'u_math.c',
110 'u_math.h',
111 'u_mm.c',
112 'u_mm.h',
113 'u_debug.c',
114 'u_debug.h',
115 'u_cpu_detect.c',
116 'u_cpu_detect.h',
117 'vma.c',
118 'vma.h',
119 )
120
121 files_drirc = files('00-mesa-defaults.conf')
122
123 install_data(files_drirc, install_dir : join_paths(get_option('datadir'), 'drirc.d'))
124
125 if with_tests
126 prog_xmllint = find_program('xmllint', required : false, native : true)
127 if prog_xmllint.found()
128 test(
129 'drirc xml validation',
130 prog_xmllint,
131 args : ['--noout', '--valid', files_drirc],
132 suite : ['util'],
133 )
134 endif
135 endif
136
137 files_xmlconfig = files(
138 'xmlconfig.c',
139 'xmlconfig.h',
140 )
141
142 format_srgb = custom_target(
143 'format_srgb',
144 input : ['format_srgb.py'],
145 output : 'format_srgb.c',
146 command : [prog_python, '@INPUT0@'],
147 capture : true,
148 )
149
150 deps_for_libmesa_util = [
151 dep_zlib,
152 dep_clock,
153 dep_thread,
154 dep_atomic,
155 dep_m,
156 dep_valgrind,
157 dep_zstd,
158 ]
159
160 if with_platform_android
161 deps_for_libmesa_util += dep_android
162 endif
163
164 _libmesa_util = static_library(
165 'mesa_util',
166 [files_mesa_util, format_srgb],
167 include_directories : inc_common,
168 dependencies : deps_for_libmesa_util,
169 link_with: libmesa_format,
170 c_args : [c_msvc_compat_args, c_vis_args],
171 build_by_default : false
172 )
173
174 idep_mesautil = declare_dependency(
175 link_with : _libmesa_util,
176 include_directories : inc_util,
177 dependencies : [dep_zlib, dep_clock, dep_thread, dep_atomic, dep_m],
178 )
179
180 _libxmlconfig = static_library(
181 'xmlconfig',
182 files_xmlconfig,
183 include_directories : inc_common,
184 dependencies : [idep_mesautil, dep_expat, dep_m],
185 c_args : [
186 c_msvc_compat_args, c_vis_args,
187 '-DSYSCONFDIR="@0@"'.format(
188 join_paths(get_option('prefix'), get_option('sysconfdir'))
189 ),
190 '-DDATADIR="@0@"'.format(
191 join_paths(get_option('prefix'), get_option('datadir'))
192 ),
193 ],
194 build_by_default : false,
195 )
196
197 idep_xmlconfig = declare_dependency(
198 dependencies : [idep_xmlconfig_headers, dep_expat],
199 link_with : _libxmlconfig,
200 )
201
202 if with_tests
203 test(
204 'u_atomic',
205 executable(
206 'u_atomic_test',
207 files('u_atomic_test.c'),
208 include_directories : inc_common,
209 dependencies : idep_mesautil,
210 c_args : [c_msvc_compat_args],
211 ),
212 suite : ['util'],
213 )
214
215 test(
216 'blob',
217 executable(
218 'blob_test',
219 files('blob_test.c'),
220 include_directories : inc_common,
221 dependencies : idep_mesautil,
222 c_args : [c_msvc_compat_args],
223 ),
224 suite : ['util'],
225 )
226
227 test(
228 'rb_tree',
229 executable(
230 'rb_tree_test',
231 files('rb_tree_test.c'),
232 include_directories : inc_common,
233 dependencies : idep_mesautil,
234 c_args : [c_msvc_compat_args],
235 ),
236 suite : ['util'],
237 )
238
239 test(
240 'roundeven',
241 executable(
242 'roundeven_test',
243 files('roundeven_test.c'),
244 include_directories : inc_common,
245 c_args : [c_msvc_compat_args],
246 dependencies : [dep_m],
247 ),
248 suite : ['util'],
249 )
250
251 # FIXME: this test crashes on windows
252 if host_machine.system() != 'windows'
253 test(
254 'mesa-sha1',
255 executable(
256 'mesa-sha1_test',
257 files('mesa-sha1_test.c'),
258 include_directories : inc_common,
259 link_with : _libmesa_util,
260 c_args : [c_msvc_compat_args],
261 ),
262 suite : ['util'],
263 )
264 endif
265
266 test(
267 'bitset',
268 executable(
269 'bitset_test',
270 files('bitset_test.cpp'),
271 include_directories : inc_common,
272 dependencies : [idep_mesautil, idep_gtest],
273 ),
274 suite : ['util'],
275 )
276
277 subdir('tests/fast_idiv_by_const')
278 subdir('tests/fast_urem_by_const')
279 subdir('tests/hash_table')
280 if not (host_machine.system() == 'windows' and cc.get_id() == 'gcc')
281 # FIXME: These tests fail with mingw, but not with msvc.
282 subdir('tests/string_buffer')
283 endif
284 if cc.has_header('sys/time.h') # MinGW has this, but Vanilla windows doesn't
285 subdir('tests/timespec')
286 endif
287 subdir('tests/vma')
288 subdir('tests/set')
289 subdir('tests/sparse_array')
290 endif