Compiling a program for my friends to run.

May 25, 2013 at 10:38pm
Write your question here.

I'm learning C++ and have written a little game that runs fine on my PC but when I try and send a friend the .exe it says that they are missing the MSVCP110.dll. I have tried sending the .exe in both the debug and the release folder under Visual Studio in My Documents. How do I compile the program so that others can run it?
May 25, 2013 at 10:57pm
That means it doesn't compile the dlls send them the dlls and run exe at same place dlls are eg same folder
Edit try to run yourself with exe to see which dlls are missing
Last edited on May 25, 2013 at 10:58pm
May 25, 2013 at 11:06pm
closed account (G309216C)
Hi,

You need to disable the CRT by going to :
Project -> Properties -> Configuration Properties -> C\C++ -> Code Generation -> Runtime Library then changing it to:

Multi-threaded (/MT)

This should solve your issue.

GL
Topic archived. No new replies allowed.