meson: fix blob test includes
authorDylan Baker <dylan@pnwbakers.com>
Fri, 13 Oct 2017 17:34:07 +0000 (10:34 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Fri, 13 Oct 2017 17:40:23 +0000 (10:40 -0700)
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 <dylanx.c.baker@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/compiler/glsl/tests/meson.build

index ae04743c5a05219357a586a5cdae7cc155fc06f0..27f34075b4babfbd0d62b04acdbd96d1d48f42b8 100644 (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],
 )