Ray Morgan
Ray Morgan

Reputation: 306

How to build and install yajl-objc on iOS

Hey I am trying to get http://github.com/gabriel/yajl-objc to work on iOS. It says to "Add the YAJLIOS.framework to your project" but I am not sure how I can get/build YAJLIOS.framework

Thanks! -Ray

Upvotes: 3

Views: 3105

Answers (2)

gdavis
gdavis

Reputation: 2585

Although this is an old question, I came across the issue today updating a client's old project. The YAJL-objC project requires you to run a makefile command in order to compile the .framework file needed for installation.

To create the framework, checkout the latest from github, and then open Terminal. Change your directory to: yajl-objc\Project-iOS

Next, type the command make and run it. This will execute the compiling for you and create a new framework file here: yajl-objc\Project-iOS\Framework\YAJLiOS.framework

You can then drag that framework into the project you wish to use it in. Good luck!

Upvotes: 4

Ray Morgan
Ray Morgan

Reputation: 306

I should have looked harder, but there is simply a download under the github download link that includes the framework.

Upvotes: 0

Related Questions