VS2010中的“无法打开包含文件”错误

时间:2012-01-21 19:11:41

标签: c visual-studio-2010 build include

我正在尝试编译开源工具“abc”。

当我尝试构建解决方案文件时,我收到了很多错误消息。

enter image description here

c源代码有include指令,而VS2010找不到头文件。文件结构如下。

enter image description here

#include "src/misc/util/abc_global.h"
#include "pr.h"

在项目属性中,我尝试添加$(SolutionDir)和$(ProjectDir),但它不起作用。

可能出现什么问题?

enter image description here

2 个答案:

答案 0 :(得分:2)

enter image description here

我需要在C / C ++ / General / Additional Include Directories中设置属性

答案 1 :(得分:1)

我想你想要$(ProjectDir)。也许您的解决方案是项目上方的一个文件夹。