windeployqt ignores Qt.labs.platform
-
I need to use
Qt.labs.platform/FileDialogdue to specific limitation in file dialog provided by QtQuick. Namely, it doesn't allow to set file name before dialog starts. The issue is, we're usingwindeployqttool to gather all Qt binaries and pieces for our application. And this tool completely ignores that specific QML package, while fetching in Qt.labs.calendar just fine (probably pulled in by some library internals).I've added
Widgetscomponent as required for Qt in CMake'sfind_package. I link my binary with QWidgets, and it links just fine. I've addedimport Qt.labs.platform 1.1in file which uses that component. Unfortunately these steps don't seem to be enough. What else do I need forwindeployqtto recognizeQt.labs.platformplugin as dependency?Thanks