接收 “致命错误C1083:无法打开包含文件:'gxall.h:没有这样的文件或目录”

可能重复:
Error message Cannot open include file: ‘gxall.h’: No such file or directory接收 “致命错误C1083:无法打开包含文件:'gxall.h:没有这样的文件或目录”

你好我的工作VC++ 6.0,我已经在stdafx.h中包含的文件,但gxall.h在构建代码我收到错误:

fatal error C1083: Cannot open include file: 'gxall.h': No such file or directory

// Objective Grid 

#include <gxall.h>

回答:

您需要在项目属性中设置目标网格包含文件夹的路径。

选择菜单Project->[YourProjectName] Properties然后编辑C/C++->General->Additional Include Directories将线路添加到那里,例如, \3rdParty\OGrid12.0.2\Include

以上是 接收 “致命错误C1083:无法打开包含文件:'gxall.h:没有这样的文件或目录” 的全部内容, 来源链接: utcz.com/qa/265766.html

回到顶部