Disabling precompiled headers for a specific file in a VC++ 2010 project

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-01 13:53:39

问题


As the title says. I have a C++ project, and added 1 C .h file and a C .c source file, but they are having problems because the rest of the project uses a precompiled header, but if I try to include it in those C files, it gives an error. I can't just disable precompiled headers for the whole project, because it's part of a larger project that uses it and has code by somebody else.

So is there a way to select those two C files (the .h header and .c source files) and disable PCH?

Thanks.


回答1:


Highlight the file in the Solution Explorer and hit Alt+F7. This will bring up the properties for the file; in the "C/C++" section under "Precompiled Headers" you'll find the relevant options. You don't need to worry about the .h files.




回答2:


In C++ at least, you can right click on the cpp file itself and hit properties -- this lets you override C/C++ compiler settings for that file only. You can use that to disable precompiled headers for that one file.



来源:https://stackoverflow.com/questions/9318951/disabling-precompiled-headers-for-a-specific-file-in-a-vc-2010-project

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