For my C++ program I would like to statically link the following dlls' in my CodeBlocks setup with the MinGW GCC compiler:
- libcurl-4.dll
- libeay32.dll
- ssleay32.dll
Yes, I know I can't statically link these DLLs since these are Dynamic Libraries. However, I can't figure out how to link the static libraries to overcome the required DLLs mentioned above.
I have tried many suggestions already, however, I still can't get it to work. At the moment I just redistribute the DLLs with my software, however, I would like to achieve to send off 1 .exe file.
Thanks for your helpful answers