3

我正在使用theos编写一个调整并需要使用 libxml2。我已经像这样添加了 LDFLAGS:

widget_INSTALL_PATH = /Library/WeeLoader/Plugins/
widget_FRAMEWORKS = UIKit CoreGraphics
widget_LDFLAGS = -lxml2

我的 xxx.m 中的代码

#import "BBWeeAppController-Protocol.h"
#import <libxml/HTMLparser.h>

比 make ,错误:

error: libxml/HTMLparser.h: No such file or directory

在 xcode 中需要设置 'header search path' -> $SDKROOT/usr/include/libxml2,但是在“ theos ”中怎么办?

4

1 回答 1

2

我相信你需要使用 CFLAGS。如果您还没有查看 Theos Makefile 页面http://uv.howett.net/ipf.html

于 2013-02-06T19:54:59.053 回答