Module: Mesa Branch: master Commit: eca79e84b90b0751baff8df18ce7069ba9c73a09 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=eca79e84b90b0751baff8df18ce7069ba9c73a09
Author: Mauro Rossi <[email protected]> Date: Tue Jan 10 01:52:57 2017 +0100 android: st/mesa: fix building error in libmesa_st_mesa Fixes building error due to dependency on nir generated headers Reviewed-by: Tapani Pälli <[email protected]> Reviewed-by: Emil Velikov <[email protected]> --- src/mesa/Android.libmesa_st_mesa.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mesa/Android.libmesa_st_mesa.mk b/src/mesa/Android.libmesa_st_mesa.mk index 3905ddc..92df4ad 100644 --- a/src/mesa/Android.libmesa_st_mesa.mk +++ b/src/mesa/Android.libmesa_st_mesa.mk @@ -40,7 +40,9 @@ LOCAL_MODULE := libmesa_st_mesa LOCAL_SRC_FILES := \ $(MESA_GALLIUM_FILES) -LOCAL_GENERATED_SOURCES := $(MESA_GEN_GLSL_H) +LOCAL_GENERATED_SOURCES := \ + $(MESA_GEN_GLSL_H) \ + $(MESA_GEN_NIR_H) ifeq ($(strip $(MESA_ENABLE_ASM)),true) ifeq ($(TARGET_ARCH),x86) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
