build: Build etnaviv drm
[mesa.git] / src / gallium / drivers / etnaviv / 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_etnaviv = files(
22 'hw/cmdstream.xml.h',
23 'hw/common.xml.h',
24 'hw/common_3d.xml.h',
25 'hw/isa.xml.h',
26 'hw/state_3d.xml.h',
27 'hw/state_blt.xml.h',
28 'hw/state.xml.h',
29 'hw/texdesc_3d.xml.h',
30 'etnaviv_asm.c',
31 'etnaviv_asm.h',
32 'etnaviv_blend.c',
33 'etnaviv_blend.h',
34 'etnaviv_blt.c',
35 'etnaviv_blt.h',
36 'etnaviv_clear_blit.c',
37 'etnaviv_clear_blit.h',
38 'etnaviv_compiler.c',
39 'etnaviv_compiler.h',
40 'etnaviv_context.c',
41 'etnaviv_context.h',
42 'etnaviv_debug.h',
43 'etnaviv_disasm.c',
44 'etnaviv_disasm.h',
45 'etnaviv_emit.c',
46 'etnaviv_emit.h',
47 'etnaviv_etc2.c',
48 'etnaviv_etc2.h',
49 'etnaviv_fence.c',
50 'etnaviv_fence.h',
51 'etnaviv_format.c',
52 'etnaviv_format.h',
53 'etnaviv_internal.h',
54 'etnaviv_query.c',
55 'etnaviv_query.h',
56 'etnaviv_query_hw.c',
57 'etnaviv_query_hw.h',
58 'etnaviv_query_sw.c',
59 'etnaviv_query_sw.h',
60 'etnaviv_query_pm.c',
61 'etnaviv_query_pm.h',
62 'etnaviv_rasterizer.c',
63 'etnaviv_rasterizer.h',
64 'etnaviv_resource.c',
65 'etnaviv_resource.h',
66 'etnaviv_rs.c',
67 'etnaviv_rs.h',
68 'etnaviv_screen.c',
69 'etnaviv_screen.h',
70 'etnaviv_shader.c',
71 'etnaviv_shader.h',
72 'etnaviv_state.c',
73 'etnaviv_state.h',
74 'etnaviv_surface.c',
75 'etnaviv_surface.h',
76 'etnaviv_texture.c',
77 'etnaviv_texture.h',
78 'etnaviv_texture_state.c',
79 'etnaviv_texture_state.h',
80 'etnaviv_tiling.c',
81 'etnaviv_tiling.h',
82 'etnaviv_transfer.c',
83 'etnaviv_transfer.h',
84 'etnaviv_translate.h',
85 'etnaviv_uniforms.c',
86 'etnaviv_uniforms.h',
87 'etnaviv_util.h',
88 'etnaviv_zsa.c',
89 'etnaviv_zsa.h',
90 )
91
92 libetnaviv = static_library(
93 'etnaviv',
94 files_etnaviv,
95 c_args : [c_vis_args],
96 include_directories : [
97 inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_etnaviv,
98 ],
99 link_with: libetnaviv_drm,
100 dependencies : dep_libdrm,
101 )
102
103 etnaviv_compiler = executable(
104 'etnaviv_compiler',
105 'etnaviv_compiler_cmdline.c',
106 include_directories : [
107 inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_etnaviv,
108 ],
109 link_with : [libmesa_util, libgallium, libetnaviv, libetnaviv_drm],
110 build_by_default : with_tools.contains('etnaviv'),
111 install : with_tools.contains('etnaviv'),
112 dependencies : dep_libdrm,
113 )
114
115 driver_etnaviv = declare_dependency(
116 compile_args : '-DGALLIUM_ETNAVIV',
117 link_with : [libetnaviv, libetnavivdrm],
118 )