OSDN Git Service

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