meson: fix blob test includes

Since blob.h moved up to src/compiler the test should include that
instead of src/compiler/glsl

fixes: 0e3bd56c6e ("compiler: Move blob up a level")
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
Dylan Baker 2017-10-13 10:34:07 -07:00
parent ee779c93d5
commit 142dc8b9de
1 changed files with 1 additions and 1 deletions

View File

@ -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],
)