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 do compile the program and other people can't use it because of the missing msvcr120.dll file. So it would be great if i could change that somehow.
Is it possible to install the Plattformtoolset without a older Visualstudio version?
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.