mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 20:28:05 +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>
30 lines
505 B
Meson
30 lines
505 B
Meson
# Copyright © 2017 Intel Corporation
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
inc_amd = include_directories('.')
|
|
|
|
if with_amd_vk or with_gallium_radeonsi
|
|
subdir('addrlib')
|
|
subdir('common')
|
|
if amd_with_llvm
|
|
subdir('llvm')
|
|
else
|
|
libamd_common_llvm = []
|
|
endif
|
|
subdir('compiler')
|
|
endif
|
|
|
|
if with_amd_vk
|
|
subdir('vulkan')
|
|
if with_aco_tests
|
|
subdir('compiler/tests')
|
|
endif
|
|
endif
|
|
|
|
if with_tools.contains('drm-shim')
|
|
subdir('drm-shim')
|
|
endif
|
|
|
|
if with_gallium_radeonsi
|
|
subdir('vpelib')
|
|
endif
|