我在项目中有一个静态库。我已正确设置header search path
指向库目录recursively
。有人可以告诉我为什么在使用xcodebuild
从终端提交项目时出现错误?
admin$ xcodebuild install DSTROOT=. INSTALL_PATH=/bin /Users/admin/iNewsArticle.h:11:9: fatal error: 'XPathQuery/TFHpple.h' file not found #import <XPathQuery/TFHpple.h> ^ 1 error generated.
[编辑]
如果您收到此错误;请参阅我的其他相关帖子 - iOS: Absolute project path with xcodebuild以获得解决方案。
答案 0 :(得分:1)
你试过了吗?
#import "XPathQuery/TFHpple.h"
系统搜索路径使用尖括号(基本上是你所包含的框架)....如果你有一个递归的标题搜索路径,你也可以使用:
#import "TFHpple.h"