I'm trying to use OpenSSL in my .C file, the include lines look like this:
#include <openssl/conf.h>
#include <openssl/evp.h>
#include <openssl/err.h>
#include <openssl/aes.h>
However, I get the error:
openssl/conf.h: no file or directory
The library is located at "C:\Program Files (x86)\OpenSSL" and its include files are located at "C:\Program Files (x86)\OpenSSL\include". How do I link this library while compiling with MSVC?