The interface I programmed with Qt does not open
-
wrote on 8 Jan 2023, 18:54 last edited by
I wrote a program with Qt5. This program works when run with Qt5 creator. but it doesn't work when I try it with the .exe in the build folder. It works when compiled with qmake and not when compiled with cmake. It works when the Qt5Quickd.dll files in the qmake file are copied to the cmake folder.
Note:There are already Qt5Quickd.dll files in the cmake folder -
Hi,
When you want to start your application outside of Qt Creator you have to deploy it in the same way you for installing in a different computer. Check windeployqt.
-
Hi,
When you want to start your application outside of Qt Creator you have to deploy it in the same way you for installing in a different computer. Check windeployqt.
-
How did you use windeployqt ?
-
wrote on 10 Jan 2023, 05:05 last edited by serkan_tr 1 Oct 2023, 05:05
@SGaist said in The interface I programmed with Qt does not open:
How did you use windeployqt ?
windeployqt "build_file"
i used it like this -> create file: create folder path.
Thanks a lot for your help.
-
Since you are using QtQuick you need to tell windeployqt where to check for your QML files so it can deploy everything needed with regards to these.
-
Since you are using QtQuick you need to tell windeployqt where to check for your QML files so it can deploy everything needed with regards to these.
-
You got it working ?
1/9