From b6b32ecbf571976052ec580074614a660ec676f9 Mon Sep 17 00:00:00 2001 From: Vladyslav Baranovskyi Date: Thu, 19 Dec 2024 17:05:08 +0200 Subject: [PATCH] Fixed assimp dependency linking --- 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 782c75b..76d83da 100644 --- a/3rdParty/assimp/CMakeLists.txt +++ b/3rdParty/assimp/CMakeLists.txt @@ -42,7 +42,7 @@ function(LinkAssimp TARGET) set(ASSIMP_LIB_NAME ${ASSIMP_LIBRARIES}) endif () else () - set(ASSIMP_LIB_NAME "assimp") + set(ASSIMP_LIB_NAME assimp) endif () if (assimp_FOUND OR ASSIMP_FOUND OR assimp_BUILT) message("Linking assimp: ${ASSIMP_LIB_NAME}")