xcode - iOS: Building project from terminal using xcodebuild -
i have static library in project. have setup header search path correctly point library directory recursively. please tell me why following error while buling project terminal using 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.
[edit]
if getting error; see other related post - ios: absolute project path xcodebuild solution.
have tried:
#import "xpathquery/tfhpple.h" the angle-brackets used system search paths (basically whatever frameworks have included).... if have recursive header search path may able use:
#import "tfhpple.h"
Comments
Post a Comment