Managing additional external DLLs when packaging binary release with Qt dependency #191
Labels
enhancement
New feature or request
help wanted
Extra attention is needed
question
Further information is requested
Comment:
For our application we are depending on Qt5 and so far I have been using the binary installer provided by Qt itself. Then I use windeployqt.exe to copy all the required DLL dependencies by Qt next to the executable to package a binary release using
cpack
. This has been working fine so far, the package can be used on other machines as well. However, switching toconda-forge qt-main
it seems that linking Qt (for example Qt5Core.dll) now also required several other DLLs such as:However, these are not copied by windeployqt.exe since they are external to the Qt project. This means that it is no longer possible to create a package as easily since now we need to include these DLLs as well and they are kind of external to the build system. In fact I am unsure how to resolve this issue in general. Is this a limitation of using the qt-main package or is there something that I am missing?
The text was updated successfully, but these errors were encountered: