Skip to content
Snippets Groups Projects
Verified Commit 400b03f5 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

cmake: fix findAssimp on Windows

parent 4ec8e70c
No related branches found
No related tags found
No related merge requests found
Pipeline #21911 passed with warnings
......@@ -18,11 +18,11 @@ if(WIN32)
if(MSVC12)
set(ASSIMP_MSVC_VERSIONS "vc120")
elseif(MSVC14)
set(ASSIMP_MSVC_VERSIONS "vc140;vc141")
else()
set(ASSIMP_MSVC_VERSIONS "vc140;vc141;vc142;vc143")
endif(MSVC12)
if(MSVC12 OR MSVC14)
if(MSVC)
foreach(ASSIMP_MSVC_VERSION ${ASSIMP_MSVC_VERSIONS})
find_path(ASSIMP_LIBRARY_DIR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment