Skip to content

Commit

Permalink
toolset changes in debug cmake template
Browse files Browse the repository at this point in the history
  • Loading branch information
PK authored Jun 11, 2019
1 parent 03c0100 commit d24b6e2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion assimpTargets-debug.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ if(MSVC)
set(MSVC_PREFIX "vc110")
elseif( MSVC12 )
set(MSVC_PREFIX "vc120")
elseif( MSVC14 )
elseif( MSVC_VERSION LESS 1910)
set(MSVC_PREFIX "vc140")
elseif( MSVC_VERSION LESS 1920)
set(MSVC_PREFIX "vc141")
elseif( MSVC_VERSION LESS 1930)
set(MSVC_PREFIX "vc142")
else()
set(MSVC_PREFIX "vc150")
endif()
Expand Down

0 comments on commit d24b6e2

Please sign in to comment.