diff options
author | Eric Engestrom <[email protected]> | 2019-07-22 14:50:15 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-08-03 00:08:37 +0000 |
commit | d2d85b950d78c553b2694cda9ef0cc7bf9a0f737 (patch) | |
tree | afdd28e30b66064b8b540a6e9d6d0ecbe27a6678 /src/mesa/state_tracker | |
parent | 8ddb38209d51c53d6e5792b04b97814dfce9bce6 (diff) |
meson: replace libmesa_util with idep_mesautil
This automates the include_directories and dependencies tracking so that
all users of libmesa_util don't need to add them manually.
Next commit will remove the ones that were only added for that reason.
Signed-off-by: Eric Engestrom <[email protected]>
Acked-by: Eric Anholt <[email protected]>
Tested-by: Vinson Lee <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/tests/meson.build | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/mesa/state_tracker/tests/meson.build b/src/mesa/state_tracker/tests/meson.build index 441de8d2796..d550f01c7fc 100644 --- a/src/mesa/state_tracker/tests/meson.build +++ b/src/mesa/state_tracker/tests/meson.build @@ -33,9 +33,8 @@ test( include_directories : inc_common, link_with : [ libmesa_st_test_common, libmesa_gallium, libglapi, libgallium, - libmesa_util, ], - dependencies : dep_thread, + dependencies : [dep_thread, idep_mesautil], ), suite : ['st_mesa'], ) @@ -48,9 +47,8 @@ test( include_directories : inc_common, link_with : [ libmesa_st_test_common, libmesa_gallium, libglapi, libgallium, - libmesa_util, ], - dependencies : [idep_gtest, dep_thread], + dependencies : [idep_mesautil, idep_gtest, dep_thread], ), suite : ['st_mesa'], ) @@ -63,9 +61,8 @@ test( include_directories : inc_common, link_with : [ libmesa_st_test_common, libmesa_gallium, libglapi, libgallium, - libmesa_util, ], - dependencies : [idep_gtest, dep_thread] + dependencies : [idep_mesautil, idep_gtest, dep_thread], ), suite : ['st_mesa'], ) |