diff options
author | Pavel Ondračka <pavel.ondracka@gmail.com> | 2022-05-03 08:17:57 +0200 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2022-11-16 14:37:47 +0000 |
commit | 65ffcee23db6c7c4202eaa1d9638062fd8b03a80 (patch) | |
tree | 40e5c62d68364fa1ac9b11268dee355a1264b784 /src/meson.build | |
parent | c699122d6aa7626fd8d18168bd25a7a354e42376 (diff) |
meson: build radeon drm-shim also for r300 and r600
Right now the drm-shim is build only when one also builds radeonsi
or radv.
Acked-by: Pavel Ondračka <pavel.ondracka@gmail.com>
Reviewed-by: Emma Anholt <emma@anholt.net>
Signed-off-by: Pavel Ondračka <pavel.ondracka@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19692>
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build index 1e9a39b52df..e5510452775 100644 --- a/src/meson.build +++ b/src/meson.build @@ -84,7 +84,7 @@ endif if with_any_intel subdir('intel') endif -if with_gallium_radeonsi or with_amd_vk +if with_gallium_radeonsi or with_amd_vk or with_gallium_r300 or with_gallium_r600 subdir('amd') endif if with_any_broadcom |