cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
running c++ console application without
running c++ console application without Visual Studio
Jun 29, 2015 at 10:18am UTC
ataik
(8)
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 UTC
shadder
(813)
As you build the project an exe file will be automatically created. look for it and send it...
Jun 29, 2015 at 12:38pm UTC
andywestken
(4094)
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.