msvcr110.dll missing

Every time i try to create a release from my visual studio 2012,
it always asks to my friends a msvcr110.dll which has to be inside the folder or in the windows folder.
How can i remove this error and include the .dll every time i create a program directly from the build and compile?
Last edited on
Any help pls?
One solution is to have your friends install the appropriate microsoft visual C++
redistributable package. Then, they'll be able to run any program you send them.
Last edited on
I already sent the package and it worked, but i mean how to fix that for everyone? (without the package)
Last edited on
Then you have to statically link to the library. This is how you can do it in Visual C++ 2008:
http://stackoverflow.com/questions/2035287/static-runtime-library-linking-for-visual-c-express-2008

The procedure should be similar in Visual C++ 2012. If not, perhaps someone else knows better.
Last edited on
Thanks, hope it works!
Topic archived. No new replies allowed.