Make Yajl iOS framework file

I want to make the YAJLiOS.framework file from code obtained from github: https://github.com/gabriel/yajl-objc

Is there someone who tells me how to do this? because I tried to create "Project-iOS" but no file is created.

Thank.

+3


source to share


1 answer


open a terminal window and change it in the yajl-objc directory you got from github. There you enter:

cd Project-iOS
make

      



In the "Project-iOS" directory, a "build" directory will be created in which you will find your "YAJLiOS.framework".

+2


source







All Articles