Is it possible to change the restrib file to msvcr100 so other computers can run the program without having problems with the .dll file? If so how do i get that?
I d
One thing to consider in regards to changing the platform toolset: it changes the compiler, so C++ features newer than Visual Studio 2010 will not compile. It also requires the other version to be installed.
The best way to handle this would be to give them the Visual C++ Redistributable for Visual Studio 2013.
You could either have them do it themselves, or make an installer.
You have a few choices:
C/C++ > Code Generation > RunTime Library > Multi-threaded (/MT)
or (/MTd)
. All the needed code will be compiled into your app, which will make the files bigger, but will avoid the issues you mention.In Project > Properties > General
, there is a setting called Platform toolset
. You can use that to change the version of the build toolchain used.