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