util: Move u_debug to utils
[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('xmlpool')
24
25 files_mesa_util = files(
26 'bigmath.h',
27 'bitscan.c',
28 'bitscan.h',
29 'bitset.h',
30 'build_id.c',
31 'build_id.h',
32 'crc32.c',
33 'crc32.h',
34 'debug.c',
35 'debug.h',
36 'disk_cache.c',
37 'disk_cache.h',
38 'fast_idiv_by_const.c',
39 'fast_idiv_by_const.h',
40 'format_r11g11b10f.h',
41 'format_rgb9e5.h',
42 'format_srgb.h',
43 'futex.h',
44 'half_float.c',
45 'half_float.h',
46 'hash_table.c',
47 'hash_table.h',
48 'list.h',
49 'macros.h',
50 'mesa-sha1.c',
51 'mesa-sha1.h',
52 'os_time.c',
53 'os_time.h',
54 'os_misc.c',
55 'os_misc.h',
56 'u_process.c',
57 'u_process.h',
58 'sha1/sha1.c',
59 'sha1/sha1.h',
60 'ralloc.c',
61 'ralloc.h',
62 'rand_xor.c',
63 'rand_xor.h',
64 'rb_tree.c',
65 'rb_tree.h',
66 'register_allocate.c',
67 'register_allocate.h',
68 'rgtc.c',
69 'rgtc.h',
70 'rounding.h',
71 'set.c',
72 'set.h',
73 'simple_list.h',
74 'simple_mtx.h',
75 'slab.c',
76 'slab.h',
77 'string_buffer.c',
78 'string_buffer.h',
79 'strndup.h',
80 'strtod.c',
81 'strtod.h',
82 'texcompress_rgtc_tmp.h',
83 'u_atomic.c',
84 'u_atomic.h',
85 'u_dynarray.h',
86 'u_endian.h',
87 'u_queue.c',
88 'u_queue.h',
89 'u_string.h',
90 'u_thread.h',
91 'u_vector.c',
92 'u_vector.h',
93 'u_math.c',
94 'u_math.h',
95 'u_debug.c',
96 'u_debug.h',
97 'vma.c',
98 'vma.h',
99 )
100
101 install_data('00-mesa-defaults.conf', install_dir : join_paths(get_option('datadir'), 'drirc.d'))
102
103 files_xmlconfig = files(
104 'xmlconfig.c',
105 'xmlconfig.h',
106 )
107
108 format_srgb = custom_target(
109 'format_srgb',
110 input : ['format_srgb.py'],
111 output : 'format_srgb.c',
112 command : [prog_python, '@INPUT0@'],
113 capture : true,
114 )
115
116 libmesa_util = static_library(
117 'mesa_util',
118 [files_mesa_util, format_srgb],
119 include_directories : inc_common,
120 dependencies : [dep_zlib, dep_clock, dep_thread, dep_atomic],
121 c_args : [c_msvc_compat_args, c_vis_args],
122 build_by_default : false
123 )
124
125 libxmlconfig = static_library(
126 'xmlconfig',
127 files_xmlconfig,
128 include_directories : inc_common,
129 link_with : libmesa_util,
130 dependencies : [dep_expat, dep_m],
131 c_args : [
132 c_msvc_compat_args, c_vis_args,
133 '-DSYSCONFDIR="@0@"'.format(
134 join_paths(get_option('prefix'), get_option('sysconfdir'))
135 ),
136 '-DDATADIR="@0@"'.format(
137 join_paths(get_option('prefix'), get_option('datadir'))
138 ),
139 ],
140 build_by_default : false,
141 )
142
143 if with_tests
144 test(
145 'u_atomic',
146 executable(
147 'u_atomic_test',
148 files('u_atomic_test.c'),
149 include_directories : inc_common,
150 link_with : libmesa_util,
151 c_args : [c_msvc_compat_args],
152 )
153 )
154
155 test(
156 'roundeven',
157 executable(
158 'roundeven_test',
159 files('roundeven_test.c'),
160 include_directories : inc_common,
161 c_args : [c_msvc_compat_args],
162 dependencies : [dep_m],
163 )
164 )
165
166 test(
167 'mesa-sha1',
168 executable(
169 'mesa-sha1_test',
170 files('mesa-sha1_test.c'),
171 include_directories : inc_common,
172 link_with : libmesa_util,
173 c_args : [c_msvc_compat_args],
174 )
175 )
176
177 subdir('tests/fast_idiv_by_const')
178 subdir('tests/hash_table')
179 subdir('tests/string_buffer')
180 subdir('tests/vma')
181 subdir('tests/set')
182 endif