I have followed all tutorials on the web to do this. Everything works fine, up to the point I add this line on a class:
#import <openssl/pkcs7.h>
Then I have this error 'openssl/pkcs7.h' file not found.
How bad can Xcode be? I drag every file to Xcode and the files cannot be found?
This is the structure I have now:
- the app has 2 targets, openSSL must be installed on the iPad one?
- I have used this script
- the iPad target is on the following path relative to the base directory path: "Myapp ipad"
- The script generated two files "libcrypto.a" and "libssl.a". Both files are inside a directory named "lib" inside "Mhapp ipad" (= "Myapp ipad/lib")
- The script also generated an "include/openssl" directory with a lot of files. I have dragged it to "Myapp ipad". So it is now at "MyApp ipad/include"
How do I fill the search paths, library search paths, whatever to make this work?