Reputation: 1413
Am trying to build PJSIP project with SSL using VS12.
i have installed OPENSSL project in my PC at C:\openssl-0.9.8k_WIN32 . and added include dir in my project and give path in properties files too but getting below error
any insight over above error ?
FYI:
i have include the include the header path in following places....
1) project properties ----->General ------>AdditionalInclude Properties ----->C:\openssl-0.9.8k_WIN32\include;
2)Project properties ---- >Linker ------ >General ----->AdditionalLibarariesdIRECTORIES---C:\openssl-0.9.8k_WIN32\lib
3)lINKER -----Input -----AdditionalDependies--- >libeay32.lib ssleay32.lib
anything else i have missed ? please share ur thoughts
Upvotes: 1
Views: 910
Reputation: 103
For the steps 1 and 2 use the entire path to inc32 folder. In my case it is C:\openssl-1.0.2g\inc32.
For the third step use the value libeay32.lib
Upvotes: 0