61fd35d5ef8d98ef682a047a448292ddf9051f93
[mesa.git] / src / intel / common / 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 # TODO: android?
22
23 files_libintel_common = files(
24 'gen_clflush.h',
25 'gen_batch_decoder.c',
26 'gen_decoder.c',
27 'gen_decoder.h',
28 'gen_disasm.c',
29 'gen_disasm.h',
30 'gen_gem.h',
31 'gen_guardband.h',
32 'gen_l3_config.c',
33 'gen_l3_config.h',
34 'gen_urb_config.c',
35 'gen_sample_positions.h',
36 'intel_log.c',
37 )
38
39 libintel_common = static_library(
40 ['intel_common', genX_xml_h],
41 files_libintel_common,
42 include_directories : [inc_common, inc_intel],
43 c_args : [c_vis_args, no_override_init_args],
44 link_with : [libisl],
45 dependencies : [dep_expat, dep_libdrm, dep_thread, idep_genxml],
46 )
47
48 install_intel_gpu_tests = get_option('install-intel-gpu-tests')
49
50 if install_intel_gpu_tests
51 foreach g : [['70', 'gen7'], ['75', 'hsw'], ['80', 'gen8'],
52 ['90', 'gen9'], ['110', 'gen11']]
53 executable(
54 'intel_@0@_mi_builder_test'.format(g[1]),
55 files('tests/gen_mi_builder_test.cpp'),
56 cpp_args : [
57 cpp_vis_args, cpp_msvc_compat_args,
58 '-DGEN_VERSIONx10=@0@'.format(g[0])
59 ],
60 include_directories : [inc_common, inc_intel],
61 link_with : [libintel_dev, libmesa_util],
62 dependencies : [dep_libdrm, dep_thread, idep_gtest, idep_genxml],
63 install : install_intel_gpu_tests,
64 )
65 endforeach
66 endif
67
68 if with_tests
69 gentest_xml = files('tests/gentest.xml')
70 _name = 'gentest_pack.h'
71 gentest_pack = custom_target(
72 _name,
73 input : [gen_pack_header_py, gentest_xml],
74 output : _name,
75 command : [prog_python, '@INPUT@'],
76 capture : true,
77 )
78
79 genxml_path = join_paths(meson.source_root(),
80 '@0@'.format(gentest_xml[0]))
81
82 test(
83 'genxml_test',
84 executable(
85 'genxml_test',
86 ['tests/genxml_test.c', gentest_pack],
87 include_directories : [inc_common, inc_intel],
88 link_with : [libintel_common, libmesa_util],
89 c_args : [
90 '-DGENXML_PATH="@0@"'.format(genxml_path)
91 ],
92 ),
93 args : ['-quiet'],
94 suite : ['intel'],
95 )
96 endif