mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-19 13:38:19 +02:00
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>
26 lines
476 B
Meson
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
|