From 501cecaf2889f7352634ccd30fa3627252faaaf4 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Fri, 5 Mar 2021 19:55:14 -0500 Subject: [PATCH] add alternate library location for internal assimp --- examples/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index 6add76a..a6990cf 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -9,7 +9,8 @@ BINDIR = bin ifeq ($(USE_INTERNAL_ASSIMP), y) CXXFLAGS += -I../$(ASSIMP_DIR)/include -LDFLAGS = -lSDL2 -lGLEW -lGL -L../$(ASSIMP_DIR)/bin -lassimp +LDFLAGS = -lSDL2 -lGLEW -lGL \ + -L../$(ASSIMP_DIR)/bin -L../$(ASSIMP_DIR)/lib -lassimp endif