driconf: add DTD to allow the drirc xml (00-mesa-defaults.conf) to be validated
[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 'u_cpu_detect.c',
98 'u_cpu_detect.h',
99 'vma.c',
100 'vma.h',
101 )
102
103 files_drirc = files('00-mesa-defaults.conf')
104
105 install_data(files_drirc, install_dir : join_paths(get_option('datadir'), 'drirc.d'))
106
107 if with_tests
108 prog_xmllint = find_program('xmllint', required : false, native : true)
109 if prog_xmllint.found()
110 test(
111 'drirc xml validation',
112 prog_xmllint,
113 args : ['--noout', '--valid', files_drirc],
114 suite : ['util'],
115 )
116 endif
117 endif
118
119 files_xmlconfig = files(
120 'xmlconfig.c',
121 'xmlconfig.h',
122 )
123
124 format_srgb = custom_target(
125 'format_srgb',
126 input : ['format_srgb.py'],
127 output : 'format_srgb.c',
128 command : [prog_python, '@INPUT0@'],
129 capture : true,
130 )
131
132 libmesa_util = static_library(
133 'mesa_util',
134 [files_mesa_util, format_srgb],
135 include_directories : inc_common,
136 dependencies : [dep_zlib, dep_clock, dep_thread, dep_atomic, dep_m],
137 c_args : [c_msvc_compat_args, c_vis_args],
138 build_by_default : false
139 )
140
141 libxmlconfig = static_library(
142 'xmlconfig',
143 files_xmlconfig,
144 include_directories : inc_common,
145 link_with : libmesa_util,
146 dependencies : [dep_expat, dep_m],
147 c_args : [
148 c_msvc_compat_args, c_vis_args,
149 '-DSYSCONFDIR="@0@"'.format(
150 join_paths(get_option('prefix'), get_option('sysconfdir'))
151 ),
152 '-DDATADIR="@0@"'.format(
153 join_paths(get_option('prefix'), get_option('datadir'))
154 ),
155 ],
156 build_by_default : false,
157 )
158
159 if with_tests
160 test(
161 'u_atomic',
162 executable(
163 'u_atomic_test',
164 files('u_atomic_test.c'),
165 include_directories : inc_common,
166 link_with : libmesa_util,
167 c_args : [c_msvc_compat_args],
168 ),
169 suite : ['util'],
170 )
171
172 test(
173 'roundeven',
174 executable(
175 'roundeven_test',
176 files('roundeven_test.c'),
177 include_directories : inc_common,
178 c_args : [c_msvc_compat_args],
179 dependencies : [dep_m],
180 ),
181 suite : ['util'],
182 )
183
184 test(
185 'mesa-sha1',
186 executable(
187 'mesa-sha1_test',
188 files('mesa-sha1_test.c'),
189 include_directories : inc_common,
190 link_with : libmesa_util,
191 c_args : [c_msvc_compat_args],
192 ),
193 suite : ['util'],
194 )
195
196 subdir('tests/fast_idiv_by_const')
197 subdir('tests/hash_table')
198 subdir('tests/string_buffer')
199 subdir('tests/vma')
200 subdir('tests/set')
201 endif