I have an application that I could deploy on other machines (Visual Studio). I added the module QtMultimedia
to use the QSound
class.
Wanting redeploy my app, the executable indicates me first that I need Qt5Multimedia.dll
then Qt5Network.dll
(which I have not added in my project).
Now my application doesn't launch, but no error message, I do not understand ... I did not find much on the internet.
I finally found !
First I need to go in the folder of my exe
Then use : "windeployqt.exe ." (whithout the quotes).
That add all I need to execute my exe. :)