Create a self-contained program in C++

北慕城南 提交于 2019-12-06 09:36:28

To get static linking in an MFC project set the project properties (for the release build) as follows:

C/C++ Code Generation, Runtime Library: Multi-threaded (/MT)

Configuration Properties, General: Use of MFC: Use MFC is a Static Library

A simple exe with these properties will run standalone.

Once you run your program, you can find it's executable in the Debug\ folder of your project.

Hope it helps! Sarge

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!