English 中文(简体)
X代码不能找到编号。 负责人
原标题:Xcode cannot find #Include<> header

I m试图通过X密码进口Irrlicht的头号档案。

#include <irrlicht.h>

它说“Irrlicht.h”。 无此类档案或目录。 是 Irrlicht.h, 资本一,尽管缩略语较低。

我在Xcode项目的主人搜索路径中添加了“/lib/irrlicht-1.6/include”,但至今仍未找到。

我所尝试的唯一工作是:

#include "/lib/irrlicht-1.6/include/irrlicht.h"

这是一种bit笑,但我不理解为什么不工作。

更新(关于错误的更多细节):

/lib/PAL/pal_benchmark/palBenchmark/main.h:31:0
/lib/PAL/pal_benchmark/palBenchmark/main.h:31:22: error: irrlicht.h: No such file or directory
最佳回答

我是这样说的。 也许有人可以评论为什么如此。

负责人位于该名录:

/lib/irrlicht-1.6/include/

如果我补充说,“寻找途径” 当我建造该项目时,X密码仍然找不到路。

<>Solution: 将标题改为:“User Header Exploration Paths”

因此,我不得不这样做,因为我常常把我的头条路添加到“双人搜索途径”上,然后把只不过是工作。 希望这样做能够帮助其他获得同样问题的人。

问题回答

两者

#include <irrlicht.h> 

#include "irrlicht.h" 

只要“-I”的争辩包括披露主人档案的名录。 如果irrlicht.h是“-I”办法的一部分,则不再需要。

不是明确地增加项目环境的道路,而是更方便、更方便地解决这种局面的办法,就是将载有你的档案目录(在这种情况下是/lib/irrlicht-1.6/include)输入项目档案。 这当然增加了你的项目的负责人,使之易于浏览和寻找符号等,还增加了编辑的目录,以便你不必明确管理道路。

此外,一个统一的档案等级是你想要的。 将档案移入X条码,使你的等级趋于一致。 例如,当你想有多个目标时,该目标有“TargetName/dings.h”。 你有多种环境。 h 你们需要用自己的双倍名独一无二。

我的理解是,这是个老职位,但它在谷歌上名列前,,因此我认为我会增加一些信息。

根据XCode 3.2.6,我有一个问题,即XCode无法找到头盔。 由此可见,档案馆中有一块空间,XCode对它的解释不当。

例如: 走“Users/Username/Desktop/Project/Some Headers”等道路

这里摘自海湾合作委员会指挥部:“-I/Users/Username/Desktop/Project/Some”“-I/Headers”

参看XCode提供的建造记录,这里有一个很好的指导:。 如何显示X条码的构造记录? (为核实“i”分配是否建了齐p,是正确的。)





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签