mesa/src/imagination/meson.build
Simon Perretta ba104d3e92 pvr: add support for drm-shim
Signed-off-by: Simon Perretta <simon.perretta@imgtec.com>
Reviewed-by: Frank Binns <frank.binns@imgtec.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39453>
2026-02-02 14:25:18 +00:00

26 lines
476 B
Meson

# Copyright © 2022 Imagination Technologies Ltd.
# SPDX-License-Identifier: MIT
imagination_c_args = cc.get_supported_arguments(
'-Werror=pointer-arith',
)
inc_imagination = include_directories([
'.',
'common',
'include',
])
if with_imagination_vk or with_tools.contains('imagination')
subdir('common')
subdir('csbgen')
subdir('pco')
endif
if with_imagination_vk
subdir('vulkan')
if with_tools.contains('drm-shim')
subdir('drm-shim')
endif
endif