Search found 1 match

by Zig4
Thu Jan 07, 2021 8:31 am
Forum: Developer's Forum for Windows
Topic: Compiling SDK with MSVS 2013
Replies: 1
Views: 8795

Compiling SDK with MSVS 2013

I had to make some simple changes to the Current SDK (v4-0-2_r17624) to get it to compile with MSVS 2013. After setting the projects Platform Toolset to Visual Studio 2013 (v120), all that was needed was to change: #if defined(_MSC_VER) && (_MSC_VER < 1800) to: #if defined(_MSC_VER) &&am...