mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 04:32:32 +02:00
Add support for vs2015 and vs2017 FBX libs
This commit is contained in:
parent
63279f4525
commit
7298cd6940
1 changed files with 8 additions and 0 deletions
|
@ -56,6 +56,14 @@ elseif (${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
|
|||
endif()
|
||||
|
||||
function(_fbx_find_library _name _lib _suffix)
|
||||
if (MSVC15)
|
||||
set(VS_PREFIX vs2017)
|
||||
endif()
|
||||
|
||||
if (MSVC14)
|
||||
set(VS_PREFIX vs2015)
|
||||
endif()
|
||||
|
||||
if (MSVC12)
|
||||
set(VS_PREFIX vs2013)
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue