这里以《深入浅出MFC》中的hello程序为例。
1、创建一个General的空项目。
2、将后缀为.RC、.H、.CPP、.ICO的文件copy到新建目录下。
3、将这些文件添加到project中去。
4、在Project-〉Properties-〉ConfigurationProperties-〉Linker-〉System-〉Subsystem中选择Windows(/Subsystem:Windows)。(如果这里没有修改会产生这样的错误:Error 1 error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup libcmt.lib ,所有程序包括window、console等等都是从_tmainCRTStartup函数启动的,源代码可见……\Microsoft Visual Studio 8\VC\crt\src\crt0.c Line94,程序不同_tmainCRTStartup的定义也不同。)
如果你想设断点调试的话,在C/C++-〉General-〉DebugInformationFormat中选择ProgramDatabase(/zi)