hohl / MIHCrypto

OpenSSL wrapper for Objective-C [cryptography]
MIT License
341 stars 68 forks source link

how can I install MIHCrypto without using Cocoapods #22

Closed lwsitachi closed 9 years ago

lwsitachi commented 9 years ago

I was building a framework by a template named "iOS-Universal-Framework"(https://github.com/kstenerud/iOS-Universal-Framework) I can add some other 3rd-party static library in my framework project.But I don't know how to add your code in it.So I just want to know that if I can build your source code into a static library without using Cocoapods.

hohl commented 9 years ago

MIHCrypto only has one dependency, which is (you might have guessed it already) OpenSSL. So all you need todo is:

However this is quite a heavy task comparing to just add a dependency via CocoaPods. (If there isn't any good reason not to use CocoaPods don't try to ignore this helpful tool!)

lwsitachi commented 9 years ago

okay,thx