Compiling SDK with MSVS 2013

Post questions, comments and feedback to our 3Dconnexion Windows Development Team.

Moderator: Moderators

Post Reply
Zig4
Posts: 1
Joined: Thu Jan 07, 2021 8:03 am

Compiling SDK with MSVS 2013

Post by Zig4 »

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) && (_MSC_VER < 1900)
ngomes
Moderator
Moderator
Posts: 3318
Joined: Mon Nov 27, 2006 7:22 am
Contact:

Re: Compiling SDK with MSVS 2013

Post by ngomes »

Hi Zig4,
Zig4 wrote: Thu Jan 07, 2021 8:31 am I had to make some simple changes to the Current SDK (v4-0-2_r17624) to get it to compile with MSVS 2013.
Thank you for sharing this information. Can you recall why you had to make the change? Perhaps you can share the error message.
Nuno Gomes
Post Reply