Can you make visual c++ 2013 build with the old runtime libraries?

1.9k Views Asked by At

Since the new runtime libraries aren't on every computer, they need to have the redistributables downloaded, and I know I can do this with some kind of installer, but that is very troublesome.

So instead is there just a way for me to build my project with the old runtime libraries that are on every computers?

Or if I download an older version of visual studios and build the project on there to create the release, would that work properly? If this is possible is this the best way to go about it?

NOTE: statically linking the libraries is out of the question.

1

There are 1 best solutions below

3
Andrew Shepherd On BEST ANSWER

With C++ (both managed and native) you can specify that you want to use the old build libraries. The only caveat is that you need the early versions of Visual Studio installed on your build machine.

You specify the toolset you want via the project property pages \ Configuration Properties \ General \ Platform Toolset combo.

enter image description here