iris: Initial commit of a new 'iris' driver for Intel Gen8+ GPUs.
[mesa.git] / src / gallium / drivers / iris / 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 files_libiris = files(
22 'iris_batch.c',
23 'iris_batch.h',
24 'iris_bufmgr.c',
25 'iris_bufmgr.h',
26 'iris_context.h',
27 'iris_formats.c',
28 'iris_pipe.c',
29 'iris_program.c',
30 'iris_resource.c',
31 'iris_resource.h',
32 'iris_screen.c',
33 'iris_screen.h',
34 )
35
36 iris_gen_libs = []
37 foreach v : ['90', '100']
38 _lib = static_library(
39 'libiris_gen@0@'.format(v),
40 ['iris_state.c', gen_xml_pack],
41 include_directories : [inc_common, inc_intel],
42 c_args : [c_vis_args, no_override_init_args,
43 '-DGEN_VERSIONx10=@0@'.format(v)],
44 dependencies : [dep_libdrm],
45 )
46 iris_gen_libs += _lib
47 endforeach
48
49 libiris = static_library(
50 'iris',
51 [files_libiris, gen_xml_pack, nir_opcodes_h, nir_builder_opcodes_h],
52 include_directories : [
53 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_intel, inc_nir,
54 inc_gallium_drivers,
55 # these should not be necessary, but main/macros.h...
56 inc_mesa, inc_mapi
57 ],
58 c_args : [c_vis_args],
59 cpp_args : [cpp_vis_args],
60 dependencies : [dep_libdrm, dep_valgrind],
61 link_with : [iris_gen_libs, libintel_common, libintel_compiler, libintel_dev,
62 libisl, libblorp],
63 )
64
65 driver_iris = declare_dependency(
66 compile_args : '-DGALLIUM_IRIS',
67 link_with : [libiris, libiriswinsys],
68 )