From b52cda0c665bc9b167e43cf7665b681805ceea98 Mon Sep 17 00:00:00 2001 From: chaigler Date: Wed, 24 Jan 2018 08:17:40 -0500 Subject: [PATCH] Remove legacy_stdio_definitions.lib Dependency was added by PR #1566. No longer needed now that DX SDK has been replaced. --- Tools/CMake/torque3d.cmake | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Tools/CMake/torque3d.cmake b/Tools/CMake/torque3d.cmake index ccd0c0882..f9a531f12 100644 --- a/Tools/CMake/torque3d.cmake +++ b/Tools/CMake/torque3d.cmake @@ -643,13 +643,6 @@ if(WIN32) if(TORQUE_OPENGL) addLib(OpenGL32.lib) endif() - - # JTH: DXSDK is compiled with older runtime, and MSVC 2015+ is when __vsnprintf is undefined. - # This is a workaround by linking with the older legacy library functions. - # See this for more info: http://stackoverflow.com/a/34230122 - if (MSVC14) - addLib(legacy_stdio_definitions.lib) - endif() endif() if (APPLE)