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

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -