mesa/src/imagination/meson.build
Simon Perretta ab1298e926 pvr: add initial pco stub/boilerplate
Signed-off-by: Simon Perretta <simon.perretta@imgtec.com>
Acked-by: Frank Binns <frank.binns@imgtec.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32258>
2024-11-29 15:14:10 +00:00

20 lines
357 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
subdir('common')
subdir('csbgen')
subdir('pco')
subdir('rogue')
subdir('vulkan')
endif