util: Move os_misc to util
[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 'vma.c',
96 'vma.h',
97 )
98
99 install_data('00-mesa-defaults.conf', install_dir : join_paths(get_option('datadir'), 'drirc.d'))
100
101 files_xmlconfig = files(
102 'xmlconfig.c',
103 'xmlconfig.h',
104 )
105
106 format_srgb = custom_target(
107 'format_srgb',
108 input : ['format_srgb.py'],
109 output : 'format_srgb.c',
110 command : [prog_python, '@INPUT0@'],
111 capture : true,
112 )
113
114 libmesa_util = static_library(
115 'mesa_util',
116 [files_mesa_util, format_srgb],
117 include_directories : inc_common,
118 dependencies : [dep_zlib, dep_clock, dep_thread, dep_atomic],
119 c_args : [c_msvc_compat_args, c_vis_args],
120 build_by_default : false
121 )
122
123 libxmlconfig = static_library(
124 'xmlconfig',
125 files_xmlconfig,
126 include_directories : inc_common,
127 link_with : libmesa_util,
128 dependencies : [dep_expat, dep_m],
129 c_args : [
130 c_msvc_compat_args, c_vis_args,
131 '-DSYSCONFDIR="@0@"'.format(
132 join_paths(get_option('prefix'), get_option('sysconfdir'))
133 ),
134 '-DDATADIR="@0@"'.format(
135 join_paths(get_option('prefix'), get_option('datadir'))
136 ),
137 ],
138 build_by_default : false,
139 )
140
141 if with_tests
142 test(
143 'u_atomic',
144 executable(
145 'u_atomic_test',
146 files('u_atomic_test.c'),
147 include_directories : inc_common,
148 link_with : libmesa_util,
149 c_args : [c_msvc_compat_args],
150 )
151 )
152
153 test(
154 'roundeven',
155 executable(
156 'roundeven_test',
157 files('roundeven_test.c'),
158 include_directories : inc_common,
159 c_args : [c_msvc_compat_args],
160 dependencies : [dep_m],
161 )
162 )
163
164 test(
165 'mesa-sha1',
166 executable(
167 'mesa-sha1_test',
168 files('mesa-sha1_test.c'),
169 include_directories : inc_common,
170 link_with : libmesa_util,
171 c_args : [c_msvc_compat_args],
172 )
173 )
174
175 subdir('tests/fast_idiv_by_const')
176 subdir('tests/hash_table')
177 subdir('tests/string_buffer')
178 subdir('tests/vma')
179 subdir('tests/set')
180 endif