From 79c280406f661f512ec47a28a06a92d34d84a2f3 Mon Sep 17 00:00:00 2001 From: Alexey Pelykh Date: Tue, 2 Feb 2021 19:07:10 +0200 Subject: [PATCH] Fix include paths: GLTF as well --- src/GLTF/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/GLTF/Makefile b/src/GLTF/Makefile index ece01c4..02f9c8d 100644 --- a/src/GLTF/Makefile +++ b/src/GLTF/Makefile @@ -5,6 +5,9 @@ include ../CustomGLTF.global DSONAME = lib$(GLTFLIB).$(EXT) +# Custom GLTF library +CUSTOM_GLTF = ".." + SOURCES = \ GLTF_Cache.C \ GLTF_Loader.C \ @@ -13,7 +16,8 @@ SOURCES = \ GLTF_Util.C INCDIRS = \ - -I$(HFS)/toolkit/include + -I$(CUSTOM_GLTF) \ + -I$(HFS)/toolkit/include include $(HFS)/toolkit/makefiles/Makefile.gnu