running c++ console application without Visual Studio

Jun 29, 2015 at 10:18am
Hello,

i wrote a c++ console application for a person but i need to send him an application for working independent of Visual Studio. How can i do this?

Thanks in advance
Jun 29, 2015 at 12:35pm
As you build the project an exe file will be automatically created. look for it and send it...
Jun 29, 2015 at 12:38pm
You should make sure you send the release build.

You might also want to statically link to the CRT, as this will avoid CRT versioning issues. Look at the project properties "Configuration Properties", "C/C++", "Code Generation" and check "Runtime Library" setting is "Multi-threaded (/MT)"

Andy
Topic archived. No new replies allowed.