Hello
My c++ program uses openssl like :
#include <openssl/ssl.h>
I have linked the lib, bin, and lib folders of openssl with my codeblocks project and it compile well. The problem is when I try to run the program, a popup window open and tell me that ssleay32.dll and libeay32.dll are required. I know that it can be solved by copy/past the those two files from bin directory of openssl but I am asking why the program didn't include those dll into its core ? I want my program to be independent from those dll's once it is buit. So did I miss something to configure in c::b for that to work properly ?