b54c20796ff01012759b6cfeabf2cc7d8b1577d8
[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 )
85
86 install_data('drirc', install_dir : get_option('sysconfdir'))
87
88 files_xmlconfig = files(
89 'xmlconfig.c',
90 'xmlconfig.h',
91 )
92
93 format_srgb = custom_target(
94 'format_srgb',
95 input : ['format_srgb.py'],
96 output : 'format_srgb.c',
97 command : [prog_python2, '@INPUT0@'],
98 capture : true,
99 )
100
101 libmesa_util = static_library(
102 'mesa_util',
103 [files_mesa_util, format_srgb],
104 include_directories : inc_common,
105 dependencies : [dep_zlib, dep_clock],
106 c_args : [c_msvc_compat_args, c_vis_args],
107 build_by_default : false
108 )
109
110 libxmlconfig = static_library(
111 'xmlconfig',
112 files_xmlconfig,
113 include_directories : inc_common,
114 dependencies : [dep_expat, dep_m],
115 c_args : [c_msvc_compat_args, c_vis_args,
116 '-DSYSCONFDIR="@0@"'.format(get_option('sysconfdir'))],
117 build_by_default : false,
118 )
119
120 if with_tests
121 u_atomic_test = executable(
122 'u_atomic_test',
123 files('u_atomic_test.c'),
124 include_directories : inc_common,
125 link_with : libmesa_util,
126 c_args : [c_msvc_compat_args],
127 )
128
129 roundeven_test = executable(
130 'roundeven_test',
131 files('roundeven_test.c'),
132 include_directories : inc_common,
133 c_args : [c_msvc_compat_args],
134 dependencies : [dep_m],
135 )
136
137 mesa_sha1_test = executable(
138 'mesa-sha1_test',
139 files('mesa-sha1_test.c'),
140 include_directories : inc_common,
141 link_with : libmesa_util,
142 c_args : [c_msvc_compat_args],
143 )
144
145 test('u_atomic', u_atomic_test)
146 test('roundeven', roundeven_test)
147 test('mesa-sha1', mesa_sha1_test)
148
149 subdir('tests/hash_table')
150 subdir('tests/string_buffer')
151 endif