From b91685765957c54a561ff4159a44e310aa208f33 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Sun, 14 Aug 2016 11:44:21 +0200 Subject: [PATCH] closes https://github.com/assimp/assimp/issues/967: add unzip include path when no other version was found. --- code/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/code/CMakeLists.txt b/code/CMakeLists.txt index 35ecf50..9baa4db 100644 --- a/code/CMakeLists.txt +++ b/code/CMakeLists.txt @@ -722,6 +722,7 @@ if (UNZIP_FOUND) SET (unzip_compile_SRCS "") else (UNZIP_FOUND) SET (unzip_compile_SRCS ${unzip_SRCS}) + INCLUDE_DIRECTORIES( "../contrib/unzip/" ) endif (UNZIP_FOUND) MESSAGE(STATUS "Enabled formats:${ASSIMP_IMPORTERS_ENABLED}") -- 2.7.4