mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-19 13:38:19 +02:00
ail is a more sensible place for the format tables to live. this does create a bit of dependency soup but hey. nfc Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30981>
23 lines
424 B
Meson
23 lines
424 B
Meson
# Copyright 2018 Rob Clark
|
|
# Copyright 2019 Collabora, Ltd.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
inc_asahi = include_directories([
|
|
'.', 'layout', 'lib', 'genxml', 'compiler'
|
|
])
|
|
|
|
if with_gallium_asahi or with_asahi_vk
|
|
subdir('genxml')
|
|
subdir('layout')
|
|
subdir('compiler')
|
|
subdir('clc')
|
|
subdir('lib')
|
|
endif
|
|
|
|
if with_asahi_vk
|
|
subdir('vulkan')
|
|
endif
|
|
|
|
if with_tools.contains('drm-shim')
|
|
subdir('drm-shim')
|
|
endif
|