diff options
author | Dylan Baker <[email protected]> | 2019-10-15 13:06:58 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-10-18 13:02:58 -0700 |
commit | dbd554ba05d6fd5d434b2bc08f656cd62677e77b (patch) | |
tree | f15e5904daf0ebd9d25afe7be355b1c07eb7da5d | |
parent | fa611b07f1115197916b12bd69200315f6df21af (diff) |
meson/llvmpipe: Add dep_llvm to driver_swrast
This fixes build errors in gl-gdi on windows when using llvmpipe
Reviewed-by: Adam Jackson <[email protected]>
-rw-r--r-- | src/gallium/drivers/llvmpipe/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/meson.build b/src/gallium/drivers/llvmpipe/meson.build index 09626a31d95..7882beb358d 100644 --- a/src/gallium/drivers/llvmpipe/meson.build +++ b/src/gallium/drivers/llvmpipe/meson.build @@ -109,7 +109,7 @@ libllvmpipe = static_library( driver_swrast = declare_dependency( compile_args : '-DGALLIUM_LLVMPIPE', link_with : libllvmpipe, - dependencies : driver_swrast, + dependencies : [driver_swrast, dep_llvm], ) if with_tests and with_gallium_softpipe and with_llvm |