Home > Software engineering >  QT EXE Failed to execute
QT EXE Failed to execute

Time:02-22

I am developing a windows application with qml qt. My qml application is linked with different external libraries and one of them is VLC. I generated the dependencies using generated myApp.exe file from release folder with the following command:

windeployqt.exe --qmldir [myqmlFilesPath] [pathTo myApp.exe]

I checked all the dependencies using dependency walker and it work fine for my system. But when I tried to run this on another system it give the error of missing libvlccore.dll. I added it manually but with this the application failed to run on my own system. The screenshots are attached with this. I searched alot on google but nothing helped. Thanks error message

CodePudding user response:

windeployqt does not deploy non-Qt libraries, you have to explicitly copy all non-Qt third-party libs you are using yourself

  • Related