mesa/src/panfrost/meson.build

84 lines
2.1 KiB
Meson

# Copyright © 2018 Rob Clark
# Copyright © 2019 Collabora
# 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.
inc_panfrost_hw = include_directories([
'include'
])
inc_panfrost = include_directories([
'.', 'include', 'shared', 'midgard', 'compiler', 'lib'
])
compile_args_panfrost = [
'-Wno-pointer-arith'
]
subdir('shared')
subdir('util')
subdir('midgard')
subdir('compiler')
if with_gallium_panfrost or with_panfrost_vk
subdir('lib')
subdir('perf')
endif
files_bifrost = files(
'compiler/cmdline.c',
)
bifrost_compiler = executable(
'bifrost_compiler',
[files_bifrost],
include_directories : [
inc_include,
inc_src,
inc_panfrost,
inc_panfrost_hw,
],
dependencies : [
idep_nir,
idep_mesautil,
idep_bi_opcodes_h,
dep_libdrm,
],
link_with : [
libpanfrost_bifrost,
],
build_by_default : with_tools.contains('panfrost')
)
if with_panfrost_vk
subdir('vulkan')
endif
if with_perfetto and (with_datasources.contains('panfrost') or with_datasources.contains('auto'))
subdir('ds')
endif
if with_tools.contains('drm-shim')
subdir('drm-shim')
endif
if with_tools.contains('panfrost')
subdir('tools')
endif