From b04d50709014ba725b5977ebb64df340c605ce67 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 29 Mar 2017 14:01:40 -0700 Subject: [PATCH] use correct FBX_VERSION for WIN32 --- cmake/modules/FindFBXSDK.cmake | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cmake/modules/FindFBXSDK.cmake b/cmake/modules/FindFBXSDK.cmake index 477aff6bf2..7f6a424aa1 100644 --- a/cmake/modules/FindFBXSDK.cmake +++ b/cmake/modules/FindFBXSDK.cmake @@ -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}")