fatal error C1083: Cannot open include file

喜夏-厌秋 提交于 2019-12-08 18:33:49

问题


I looked at previous post based on this but they do not relate. I am receiving the following error.

1>c:\users\numerical25\desktop\intro todirectx\introtodirectx\chapter 4\init direct3d\init direct3d.cpp(9) : fatal error C1083: Cannot open include file: 'd3dApp.h': No such file or directory

But clearly from the image shown below, its there

In oppose to other people who are having issues finding the header on the physical drive. the compiler can not find my header from within the solution explorer.


回答1:


What you see in the left pane of the IDE has absolutely nothing to do with whether the file is there or not there. "Solution Explorer" does not explore the actual files present in the file system, it simply shows you which files are registered as parts of this solution.

In order for the code to compile, the file must be present in the file system of your computer in one of the paths that the specified as search paths for header files of this solution. It is not present, hence the error.




回答2:


Make sure the directory the header is in is included in the project's settings (C/C++ → General → Additional Include Directories).




回答3:


Solution view and file view sometimes have no relationship; each file you add to the solution view is an entry in an xml file. The #include directive usually looks at the physical drive location, after looking through include paths.

My suggestion is to add the direct3d.h include path to the project's settings. That's the recommend way as it makes upgrading to newer versions of the SDK painless (and it's a good practise for any external libraries).



来源:https://stackoverflow.com/questions/2630082/fatal-error-c1083-cannot-open-include-file

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