vs2008添加头文件路径(vs2008 add directories)

简介:

错误:

编译项目的时候出现“找不到文件<NTL/ZZ.h>”,这个文件是我的一个头文件。

出现这个错误时因为NTL库没有加载到系统默认的头文件目录下。所以我们需要手动加载。

解决方法:

Project上右键(不是解决方案)->属性->配置属性->C/C++->常规->附加包含目录

在这里我看到有一个目录

[c-sharp]  view plain copy print ?
  1. C:/Documents and Settings/Akhand/My Documents/Visual Studio 2005/Projects/AKSImplementation/AKSImplementation/include。  
 

但是我的机器上没有这个目录,它是项目创建者添加的头文件目录。我们只需要在这里进行修改,将自己的头文件目录添加进去就可以了。比如我的目录就是

[c-sharp]  view plain copy print ?
  1. E:/XX/XX/AKSImplementation/AKSImplementation/include  
 

再次编译项目,不再出现上述错误。




本文转自xwdreamer博客园博客,原文链接:http://www.cnblogs.com/xwdreamer/archive/2011/03/22/2297038.html,如需转载请自行联系原作者


目录
相关文章
|
8月前
|
编译器 API C语言
C/C++ 获取文件名的方法:分享一些实用的获取文件名的方法和技巧(__FILE__,__builtin_FILE(),__BASE_FILE__等)
C/C++ 获取文件名的方法:分享一些实用的获取文件名的方法和技巧(__FILE__,__builtin_FILE(),__BASE_FILE__等)
764 0
|
8月前
|
C#
C# File.Copy介绍
C# File.Copy介绍
指定的 filePath 文件不存在
指定的 filePath 文件不存在
59 2
|
Unix Windows
为什么文件路径 Program Files 可以写成 Progra~1
为什么文件路径 Program Files 可以写成 Progra~1
file_get_contents和strstr防止文件关键内容被删除
file_get_contents和strstr防止文件关键内容被删除
45 0
完美解决common_define.h: No such file or directory
完美解决common_define.h: No such file or directory
242 0
完美解决common_define.h: No such file or directory
Cannot open include file: 'unistd.h': No such file or directory的解决办法
Cannot open include file: 'unistd.h': No such file or directory的解决办法
397 0
cmake编译时不能指定头文件路径?
cmake编译时不能指定头文件路径?
563 0