mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 17:28:09 +02:00
Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Acked-by: Dylan Baker <dylan.c.baker@intel.com> Acked-by: Eric Engestrom <eric@igalia.com> Acked-by: Daniel Stone <daniels@collabora.com> Signed-off-by: David Heidelberg <david@ixit.cz> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29972>
19 lines
341 B
Meson
19 lines
341 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('rogue')
|
|
subdir('vulkan')
|
|
endif
|