FbxBuilder - Rebuilds FBX static mesh imports to retain original pivots!

same here. I tried installing visual studio 2015 community. create a new c++ project. copy the plugin files, but the rebuild was not successful, the error says can’t find fbxsdk.h.

I am not a programmer, could anyone shred some lights?

update1:

after installing the fbxsdk and edit the include directory of the game project, I need to click rebuild to refresh the settings (guess). I was clicking build everytime and never get pass the fbxsdk.h thing.

however, now there is a new problem

1>Z:\Unreal Projects\fbxBuilderTest\Plugins\FbxBuilder\Source\FbxBuilder\Private\FbxBuilderMatineeImport.cpp(354): error C2653: ‘FbxPropertyAttr’: is not a class or namespace name
1>Z:\Unreal Projects\fbxBuilderTest\Plugins\FbxBuilder\Source\FbxBuilder\Private\FbxBuilderMatineeImport.cpp(354): error C2065: ‘eAnimatable’: undeclared identifier
1> -------- End Detailed Actions Stats -----------------------------------------------------------
1>ERROR : UBT error : Failed to produce item: Z:\Unreal Projects\fbxBuilderTest\Plugins\FbxBuilder\Binaries\Win64\UE4Editor-FbxBuilder.dll
1> Total build time: 104.37 seconds
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.MakeFile.Targets(42,5): error MSB3075: The command ““Z:\Epic Games\4.10\Engine\Build\BatchFiles\Rebuild.bat” fbxBuilderTestEditor Win64 Development “Z:\Unreal Projects\fbxBuilderTest\fbxBuilderTest.uproject” -rocket -waitmutex -2015” exited with code 5. Please verify that you have sufficient rights to run this command.
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========

update 2:
found sth interesting in the readme file of the fbxsdk, which says" FbxPropertyAttr members have been merged into FbxPropertyFlags for consistency."
so i change FbxPropertyAttr to FbxPropertyFlags in the fbxbuilderMatineeImport.cpp and it sort of works

but then

1>LINK : fatal error LNK1181: cannot open input file ‘libfbxsdk.lib’
1> -------- End Detailed Actions Stats -----------------------------------------------------------
1>ERROR : UBT error : Failed to produce item: Z:\Unreal Projects\fbxBuilderTest\Plugins\FbxBuilder\Binaries\Win64\UE4Editor-FbxBuilder.dll

found this file in the sdk folder, maybe need to include the path for this file as well, keep trying.