iOS:使用xcodebuild从终端构建项目

时间:2013-05-15 09:54:03

标签: xcode command-line compiler-errors static-libraries xcodebuild

我在项目中有一个静态库。我已正确设置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以获得解决方案。

1 个答案:

答案 0 :(得分:1)

你试过了吗?

#import "XPathQuery/TFHpple.h"

系统搜索路径使用尖括号(基本上是你所包含的框架)....如果你有一个递归的标题搜索路径,你也可以使用:

#import "TFHpple.h"