使用windeployment部署,详细可以看官方部署文档
https://doc.qt.io/qt-5/windows-deployment.html
这里记录一些遇到的坑
实现自动添加qt和第三方dll
command C:Qt5.15.2msvc2015_64inwindeployqt.exe
argument --qmldir C:Qt5.15.2msvc2015_64qml D:WorkSpace-AppindebugApp.exe
working directory %{buildDir}
问题:winqt添加dll后仍不能运行 缺少qml
通过添加build实现自动添加dll运行后发现无法运行,提示如下:
说明是没有找到qtquick模块,根据 部署工具的官方指导( https://doc.qt.io/qt-5/windows-deployment.html ),添加上--qml
即可