summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/etnaviv/meson.build
blob: 63553dec510cd216b820fcb2da01739bd4505725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Copyright © 2017 Intel Corporation

# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:

# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.

# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

files_etnaviv = files(
  'hw/cmdstream.xml.h',
  'hw/common.xml.h',
  'hw/common_3d.xml.h',
  'hw/isa.xml.h',
  'hw/state_3d.xml.h',
  'hw/state_blt.xml.h',
  'hw/state.xml.h',
  'hw/texdesc_3d.xml.h',
  'etnaviv_asm.c',
  'etnaviv_asm.h',
  'etnaviv_blend.c',
  'etnaviv_blend.h',
  'etnaviv_blt.c',
  'etnaviv_blt.h',
  'etnaviv_clear_blit.c',
  'etnaviv_clear_blit.h',
  'etnaviv_compiler.c',
  'etnaviv_compiler.h',
  'etnaviv_context.c',
  'etnaviv_context.h',
  'etnaviv_debug.h',
  'etnaviv_disasm.c',
  'etnaviv_disasm.h',
  'etnaviv_emit.c',
  'etnaviv_emit.h',
  'etnaviv_fence.c',
  'etnaviv_fence.h',
  'etnaviv_format.c',
  'etnaviv_format.h',
  'etnaviv_internal.h',
  'etnaviv_query.c',
  'etnaviv_query.h',
  'etnaviv_query_hw.c',
  'etnaviv_query_hw.h',
  'etnaviv_query_sw.c',
  'etnaviv_query_sw.h',
  'etnaviv_query_pm.c',
  'etnaviv_query_pm.h',
  'etnaviv_rasterizer.c',
  'etnaviv_rasterizer.h',
  'etnaviv_resource.c',
  'etnaviv_resource.h',
  'etnaviv_rs.c',
  'etnaviv_rs.h',
  'etnaviv_screen.c',
  'etnaviv_screen.h',
  'etnaviv_shader.c',
  'etnaviv_shader.h',
  'etnaviv_state.c',
  'etnaviv_state.h',
  'etnaviv_surface.c',
  'etnaviv_surface.h',
  'etnaviv_texture.c',
  'etnaviv_texture.h',
  'etnaviv_texture_state.c',
  'etnaviv_texture_state.h',
  'etnaviv_tiling.c',
  'etnaviv_tiling.h',
  'etnaviv_transfer.c',
  'etnaviv_transfer.h',
  'etnaviv_translate.h',
  'etnaviv_uniforms.c',
  'etnaviv_uniforms.h',
  'etnaviv_util.h',
  'etnaviv_zsa.c',
  'etnaviv_zsa.h',
)

libetnaviv = static_library(
  'etnaviv',
  files_etnaviv,
  c_args : [c_vis_args],
  include_directories : [inc_include, inc_src, inc_gallium, inc_gallium_aux],
  dependencies : dep_libdrm_etnaviv,
)

etnaviv_compiler = executable(
  'etnaviv_compiler',
  'etnaviv_compiler_cmdline.c',
  include_directories : [inc_include, inc_src, inc_gallium, inc_gallium_aux],
  link_with : [libmesa_util, libgallium, libetnaviv],
  dependencies : [dep_libdrm_etnaviv],
  build_by_default : with_tools.contains('etnaviv'),
  install : with_tools.contains('etnaviv'),
)

driver_etnaviv = declare_dependency(
  compile_args : '-DGALLIUM_ETNAVIV',
  link_with : [libetnaviv, libetnavivdrm],
)