meson: only run vulkan's meson.build when building vulkan

Fixes: d1992255bb "meson: Add build Intel "anv" vulkan driver"
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
Eric Engestrom 2018-10-11 16:21:14 +01:00
parent 4f1ae271e1
commit 3832db275e
1 changed files with 3 additions and 1 deletions

View File

@ -52,7 +52,9 @@ subdir('mapi')
# TODO: opengl
subdir('compiler')
subdir('egl/wayland/wayland-drm')
subdir('vulkan')
if with_any_vk
subdir('vulkan')
endif
if with_gallium_radeonsi or with_amd_vk
subdir('amd')
endif