I want my Qt apps to run regardless of Qt-Specific DLLs. To do this, I should link the executable statically. That, however, requires a "static" installation of Qt itself.
This is where I'm stuck. I've browsed dozens of various tutorial pages, but they are either incompatible with my setup, poorly written or just plain wrong.
This is my situation:
- Win 7, 32-bit
- I've installed Qt (MSVC 2013 version), downloaded here: http://qt-project.org/downloads (Qt 5.3.1 for Windows 32-bit (VS 2013, 559 MB))
- QtCreator works fine, I'm able to develop Qt Apps, but as said before, they are dynamically linked
- It probably doesn't matter, but I have the Visual Studio addon version 1.2.3
- I've also manually installed MinGW some time ago (not using the Qt installer)
Again, my goal is as follows: use QtCreator to compile statically linked exes that do not require Qt DLLs to be present to run.
Could anyone recommend a tutorial/wiki page describing the steps I should take?