mesa/src/asahi/meson.build
Alyssa Rosenzweig f977c52b84 ail: swallow up formats
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>
2024-09-02 23:27:14 +00:00

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