diff options
author | Greg V <[email protected]> | 2018-01-24 21:02:39 +0300 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-01-24 15:25:54 -0800 |
commit | 7c8cfe2d59bfc0dbf718a74b08b6dceaa84f7242 (patch) | |
tree | 744e009252a7cdea9a3d3063bef9f1755974eb9e /src/mesa/meson.build | |
parent | 0cc7370733e9d20999d13c4c8565f0c91846a45c (diff) |
meson: fix missing dependencies
Fixes: 66f97f6640f5 ("meson: build radeonsi")
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/mesa/meson.build')
-rw-r--r-- | src/mesa/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/meson.build b/src/mesa/meson.build index 52289af248c..66bdc931a58 100644 --- a/src/mesa/meson.build +++ b/src/mesa/meson.build @@ -720,7 +720,7 @@ libmesa_gallium = static_library( cpp_args : [cpp_vis_args, cpp_msvc_compat_args], include_directories : [inc_common, include_directories('main')], link_with : [libglsl, libmesa_sse41], - dependencies : idep_nir_headers, + dependencies : [idep_nir_headers, dep_vdpau], build_by_default : false, ) |