So I have this new iMac with macOS Sierra 10.12.5. I installed Xcode 8 and brew. Then I installed openSSL via brew
:
brew install openssl
brew link --force openssl
But --force
no longer works. Apparently I need to set some flags according to brew info openssl
For compilers to find this software you may need to set:
LDFLAGS: -L/usr/local/opt/openssl/lib
CPPFLAGS: -I/usr/local/opt/openssl/include
So the question is where do I put these flags in Xcode ?