How to release software which includes QtGraphicalEffects module and QtCharts module
-
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.