vc6预编译pch无法生成的问题

vc6修改项目结构后,将源文件移到src和include目录。
因重新添加stdafx.cpp造成编译错误:
    fatal error C1083: Cannot open precompiled header file
此时只要打开.dsp文件,找到
SOURCE=.\StdAfx.cpp
# End Source File
# Begin Source File


添加预编译设置即可:
SOURCE=.\StdAfx.cpp
[color=red]# ADD CPP /Yc"stdafx.h"[/color]
# End Source File
# Begin Source File

你可能感兴趣的:(VC)