问题
I wrote a wrapper app for wget since there is other pre-process that I want to do and use it to run wget.
My wget is installed by homebrew. I used this wget binary in Xcode project and bundled it.
Now I realized it references openssl in
/usr/local/opt/bin ...
in order to run. Since I have it installed in there, I don't have problem. However, for other environment that did not have openssl in that particular directory, wrapper app just crashes.
Is there way to include and bundle openssl in Xcode project and make wget to reference it within an app, so others don't need to go through separate installation of openssl in order to use this wrapper app?
来源:https://stackoverflow.com/questions/44523746/can-openssl-be-bundled-for-wget-wrapper-app-to-reference-in-xcode-project