I am deploying a Qt 5 application compiled for windows. It turns out that some functions are stored in plugins, which are DLLs that need to be placed in a specific subdirectory, forcing me to use this structure:
applicaton directory
|
+ ------- platforms
| |
+ + -------- qwindows.dll
|
+ ------- qpldrivers
| |
| + -------- qsqlite.dll
|
+ ------- myprogram.exe, QtCore5.dll, etc.
I would like to collapse this directory so that qwindows.dll and qsqlite.dll (and any other future plugins) are stored in the same directory as my executable.
applicaton directory
|
+ ------- myprogram.exe, QtCore5.dll, qwindows.dll, qsqlite.dll, etc.
Is there any way to do this?
source share