mesa/src/asahi/meson.build
Alyssa Rosenzweig e1644a2307 asahi: reorder compiler before clc
so clc can call the compiler.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27616>
2024-02-14 21:02:32 +00:00

19 lines
363 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
subdir('layout')
subdir('compiler')
subdir('clc')
subdir('genxml')
subdir('lib')
endif
if with_tools.contains('drm-shim')
subdir('drm-shim')
endif