That is, can I get away with DLLs in the install directory or does the installer need to ensure that MingW is fully installed?
|
|
If you install the Qt SDK, it will actually install its own MinGW tree. |
||
|
|
|
|
This doesn't directly answer your question, but generally speaking, to ensure I have all the right dependencies when creating an installer, I do the following:
You should be aware of any dependencies on the Visual C++ run-time. There are many different versions out there, and if your app depends on them, you need to install the correct version to the Windows\WinSxS directory. Microsoft provides a redistributable for each version of Visual C++ (including the express edition, which you can get for free). I only mention this because I noticed when installing Qt SDK that the VC++ redistributable was getting installed, so the Qt DLLs may have a dependency on the VC++ run-time. |
||
|
|
