There may be a better way Image may be NSFW.
Clik here to view.
EDIT: there's a simpler version of this fix that doesn't involve manually installing openssl
The issue looks like openssl has been removed. You can install openssl with homebrew
brew install openssl
...and then add its path to the openFrameworks project:
- Click on the openFrameworks project in Xcode to show its build settings
- Select
User Header Search Paths
and add this:/usr/local/opt/openssl/include
To fix this for all your projects, open the file CoreOF.xcconfig
in libs/openFrameworksCompiled/project/osx/
and add the following line at the bottom:
USER_HEADER_SEARCH_PATHS = $(INHERITED) /usr/local/opt/openssl/include