Fix compilation under MSVC(VS2019)

This commit is contained in:
JusicP
2022-01-13 16:18:38 +02:00
parent 94fb7d4c00
commit 5e27785d40
127 changed files with 195 additions and 95 deletions

22
vpc_scripts/fbx_base.vpc Normal file
View File

@@ -0,0 +1,22 @@
//============ Copyright (c) Valve Corporation, All rights reserved. ==========
//
// FBX Version, include path and defines for compiling code that utilizes
// Autodesk FBX SDK
//
//=============================================================================
$MacroRequired SRCDIR
$Macro FBXVER "2015.1"
$Macro FBXDIR "$SRCDIR\thirdparty\fbx\FbxSdk\$FBXVER"
$Configuration
{
$Compiler
{
$AdditionalIncludeDirectories "$BASE;$FBXDIR\include"
$PreprocessorDefinitions "$BASE;FBXSDK_NEW_API"
$PreprocessorDefinitions "$BASE;FBXSDK_SHARED" [$VS2012 || $VS2013 || $VS2015]
}
}