meson/llvmpipe: Add dep_llvm to driver_swrast

This fixes build errors in gl-gdi on windows when using llvmpipe

Reviewed-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
Dylan Baker 2019-10-15 13:06:58 -07:00
parent fa611b07f1
commit dbd554ba05

View file

@ -109,7 +109,7 @@ libllvmpipe = static_library(
driver_swrast = declare_dependency( driver_swrast = declare_dependency(
compile_args : '-DGALLIUM_LLVMPIPE', compile_args : '-DGALLIUM_LLVMPIPE',
link_with : libllvmpipe, link_with : libllvmpipe,
dependencies : driver_swrast, dependencies : [driver_swrast, dep_llvm],
) )
if with_tests and with_gallium_softpipe and with_llvm if with_tests and with_gallium_softpipe and with_llvm