mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-18 02:58:06 +02:00
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>
20 lines
357 B
Meson
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
|