diff options
author | Dylan Baker <[email protected]> | 2017-10-13 10:34:07 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-13 10:40:23 -0700 |
commit | 142dc8b9de58748e46c9bbc7f4dccbb0ad692a6a (patch) | |
tree | 6ea0a7e039f1b2413dc691987a09cae431be5122 /src/compiler | |
parent | ee779c93d5c8aa12151b2f375e727d36ecc0c573 (diff) |
meson: fix blob test includes
Since blob.h moved up to src/compiler the test should include that
instead of src/compiler/glsl
fixes: 0e3bd56c6ea783dbc ("compiler: Move blob up a level")
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/glsl/tests/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/tests/meson.build b/src/compiler/glsl/tests/meson.build index ae04743c5a0..27f34075b4b 100644 --- a/src/compiler/glsl/tests/meson.build +++ b/src/compiler/glsl/tests/meson.build @@ -22,7 +22,7 @@ glsl_blob_test = executable( 'blob_test', 'blob_test.c', c_args : [c_vis_args, c_msvc_compat_args, no_override_init_args], - include_directories : [inc_common, inc_glsl], + include_directories : [inc_common, inc_compiler], link_with : [libglsl], ) |