I made a simple application that uses Indy and requires the OpenSSL DLL.
I am not going to write an installer for it, so I have 2 options:
1) expand it by copying the exe + libeay32.dll + ssleay32.dll application to the same folder
2) put libeay32.dll and ssleay32.dll in exe resources and extract them to the application path when the program starts (but this can be a problem if I run exe on windowsserver 2008 or Windows Vista, and I used the Program Files folder for " deployment ")
Can you comment on these techniques or suggest a better approach?
source
share