I have compiled my Qt application and now have the following question – now my built project requires QtCore4.dll and QtGui4.dll to be located at the same folder where the .exe file is. (I built my project using MSVS2008 with Qt addon)
Q:
Is there any way to combine my final application with these .dll files so that they make one large .exe-file? (I simply don’t want to have another bunch of dll files with my release – app)
Thank you.
You need to build and link to Qt statically.
Edit: Here’s an updated link to at least similar information.