34b43245f34e107007a37e49c383d342207b17f8
[mesa.git] / src / gallium / drivers / iris / meson.build
1 # Copyright © 2017-2019 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 files_libiris = files(
22 'driinfo_iris.h',
23 'iris_batch.c',
24 'iris_batch.h',
25 'iris_binder.c',
26 'iris_binder.h',
27 'iris_blit.c',
28 'iris_border_color.c',
29 'iris_bufmgr.c',
30 'iris_bufmgr.h',
31 'iris_clear.c',
32 'iris_context.c',
33 'iris_context.h',
34 'iris_draw.c',
35 'iris_fence.c',
36 'iris_fence.h',
37 'iris_fine_fence.c',
38 'iris_fine_fence.h',
39 'iris_formats.c',
40 'iris_genx_macros.h',
41 'iris_genx_protos.h',
42 'iris_monitor.c',
43 'iris_perf.h',
44 'iris_perf.c',
45 'iris_performance_query.c',
46 'iris_pipe.h',
47 'iris_pipe_control.c',
48 'iris_program.c',
49 'iris_program_cache.c',
50 'iris_resolve.c',
51 'iris_resource.c',
52 'iris_resource.h',
53 'iris_screen.c',
54 'iris_screen.h',
55 'iris_disk_cache.c',
56 )
57
58 iris_driinfo_h = custom_target(
59 'iris_driinfo.h',
60 input : files(
61 '../../../util/merge_driinfo.py',
62 '../../auxiliary/pipe-loader/driinfo_gallium.h', 'driinfo_iris.h'
63 ),
64 output : 'iris_driinfo.h',
65 command : [prog_python, '@INPUT@'],
66 capture : true,
67 )
68
69 iris_gen_libs = []
70 foreach v : ['80', '90', '100', '110', '120']
71 iris_gen_libs += static_library(
72 'iris_gen@0@'.format(v),
73 ['iris_blorp.c', 'iris_query.c', 'iris_state.c', gen_xml_pack],
74 include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux, inc_intel],
75 c_args : [
76 c_vis_args, no_override_init_args, c_sse2_args,
77 '-DGEN_VERSIONx10=@0@'.format(v),
78 ],
79 dependencies : [dep_libdrm, dep_valgrind, idep_nir_headers],
80 )
81 endforeach
82
83 libiris = static_library(
84 'iris',
85 [files_libiris, gen_xml_pack, iris_driinfo_h],
86 include_directories : [
87 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_intel,
88 inc_gallium_drivers,
89 # these should not be necessary, but main/macros.h...
90 inc_mesa, inc_mapi
91 ],
92 c_args : [c_vis_args, c_sse2_args],
93 cpp_args : [cpp_vis_args, c_sse2_args],
94 dependencies : [dep_libdrm, dep_valgrind, idep_genxml, idep_libintel_common, idep_nir_headers],
95 link_with : [
96 iris_gen_libs, libintel_compiler, libintel_dev, libisl,
97 libblorp, libintel_perf
98 ],
99 )
100
101 driver_iris = declare_dependency(
102 compile_args : '-DGALLIUM_IRIS',
103 sources : iris_driinfo_h,
104 link_with : [libiris, libiriswinsys],
105 )