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