From 7ad31909e4e23f01221feb12e818c377fc3add03 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Sun, 7 Mar 2021 16:52:59 -0500 Subject: [PATCH] update Makefile for internal assimp config.h --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 55d0d05..821fb9d 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ RENDER_OBJECTS = $(patsubst $(SRCDIR)/%.cpp, $(OBJDIR)/%.o, $(RENDER_SOURCES)) ASSIMP_DIR=ext/assimp ifeq ($(USE_INTERNAL_ASSIMP), y) -CXXFLAGS += -I$(ASSIMP_DIR)/include +CXXFLAGS += -I$(ASSIMP_DIR)/include -I$(ASSIMP_DIR)/build/include ASSIMP_LIB := $(ASSIMP_DIR)/build/code/libassimp.a BUILD_ASSIMP_TARGET := build_assimp CLEAN_ASSIMP_TARGET := $(MAKE) -C $(ASSIMP_DIR)/build clean