From 878992362bb5129f97b0dd75c66496591fe54ec9 Mon Sep 17 00:00:00 2001 From: ohyzha Date: Fri, 13 Dec 2024 13:17:40 +0200 Subject: [PATCH] build assimp from sources every time for correct linkage after regenerating solution --- 3rdParty/assimp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdParty/assimp/CMakeLists.txt b/3rdParty/assimp/CMakeLists.txt index bad2bad..782c75b 100644 --- a/3rdParty/assimp/CMakeLists.txt +++ b/3rdParty/assimp/CMakeLists.txt @@ -7,7 +7,7 @@ if (NOT IOS) endif () if (assimp_FOUND OR ASSIMP_FOUND) message("Using system assimp") -elseif (ENABLE_ASSIMP AND NOT assimp_BUILT) +elseif (ENABLE_ASSIMP) message("Building assimp from sources") if(NOT DEFINED ASSIMP_REPO) set(ASSIMP_REPO https://github.com/assimp/assimp.git)