无法打开包含文件

时间:2011-11-22 14:46:22

标签: c++ visual-studio-2010

我有一个visual studio 2010 c ++解决方案,并且有一个包含在编译失败(致命错误,无法打开包含文件)。

我的问题是:路径是在C / C ++ Addition Include Directories中指定的,我的想法已经用完......我知道这可能是一件简单的事情,但任何提示都会很棒!

另外,我的项目在桌面上的事实是否会导致问题?

由于

编辑:

头文件位于C:\ users \ test \ Desktop \ testProject \ mainLib \ lib \ common.h 我将其包含在附加目录中:“C:\ users \ test \ Desktop \ testProject \

我的包含如下:

#include <mainLib\lib\common.h>

common.h是我创建的标题

1 个答案:

答案 0 :(得分:2)

无数种可能性。

如果你有

c:\demo\include\sub\this.hpp

你应该

#include <sub/this.hpp> // with "c:\demo\include" in additional includes

如果你有

c:\demo2\test.cpp
c:\demo2\test.hpp

你应该在test.cpp

#include "test.hpp" // NOT <test.hpp>

希望这能让你开始。