How to release a Qt Quick application?
-
I have built a release version of Qt Quick application using Qt Creator on Windows XP. It run great in Qt Creator. But in release folder, If I double click the exe file, a blank window pop up. I have checked the dll it used. All are in the release folder. Using Process Explorer I found comparing to run in Qt Creator, the exe does not load the image dll like: qjpeg4.dll, qico4.dll, qsvg4.dll, and qmng4.dll. But all these files are in the same directory as the exe file. Why the exe can not load these files?
-
they should be in imageformats directory
-
Yep and move these libs to this dir.
-
I have moved to the dll files but still no luck.
My directory structure is:
In release/,
myApp.exe
QtCore4.dll
QtDeclarative4.dll
QtGui4.dll
QtNetwork4.dll
QtScript4.dll
QtSvg4.dll
QtSql4.dll
QtXml4.dll
QtXmlPatterns4.dllin release/imageformats
qgif4.dll
qico4.dll
qjpeg4.dll
qmng4.dll
qsvg4.dllWhat is wrong?
-
all looks ok. Are you sure your problem is in not-loaded image plugins?
-