How to release software which includes QtGraphicalEffects module and QtCharts module
-
What exact error are you getting ?
Also how did you install your application on that other machine ? -
For dynamical releasing version, I use command line,windeployqt, to deploy my program.
For static version, the .exe file is what I wan.
In other machines which don't install Qt, interface cannot be displayed while the process of the software can be seen in Explorer.
-
If you are only giving your executable then no, you are not shipping them. Are you using windeployqt on your application before distributing it ?
-
If you are only giving your executable then no, you are not shipping them. Are you using windeployqt on your application before distributing it ?
-
The
--qmldir
option should point to your application QML sources folder.Even if static, you need to deploy the QML files.
-
The
--qmldir
option should point to your application QML sources folder.Even if static, you need to deploy the QML files.
-
Did you also run
windployqt
for your static application ? -
Your application might be static but it still needs the QML files from the corresponding Qt modules hence you should still call
windeployqt
. -
Your application might be static but it still needs the QML files from the corresponding Qt modules hence you should still call
windeployqt
. -
The same as you would on a build using the dynamic version of Qt.