use correct FBX_VERSION for WIN32

This commit is contained in:
Stephen Birarda 2017-03-29 14:01:40 -07:00
parent a586a31a93
commit b04d507090

View file

@ -17,7 +17,11 @@
# which uses the MIT license (https://github.com/ufz-vislab/VtkFbxConverter/blob/master/LICENSE.txt)
if (NOT FBX_VERSION)
set(FBX_VERSION 2017.0.1)
if (WIN32)
set(FBX_VERSION 2017.1)
else()
set(FBX_VERSION 2017.0.1)
endif()
endif()
string(REGEX REPLACE "^([0-9]+).*$" "\\1" FBX_VERSION_MAJOR "${FBX_VERSION}")