Packaging for deployment on OSX - QtWebEngineProcess?
-
I'm using the qt deployment tool on OSX to modify my generated app bundle and it seems to do a pretty solid job except for the instant crash that happens when using a WebView. Works fine in Qt Creator, works fine when running from the terminal BEFORE I use the deployment tool.
I look through the app bundle and don't find the QtWebEngineProcess anywhere in the bundle, and given that previous crash complaints I've discovered claim that the deployment tool was failing to package this dependency with their app bundles - I wanted to know what the status of this is because all of those reported bugs are marked closed.
What should I find in the app bundle if I'm using WebView in my Qml?
My PRO has:
# Windows, OSX, and linux use webengine win32 | macx | unix { QT += webengine }
And the Qml in question imports:
import QtQuick 2.6 import QtWebView 1.1 import QtQuick.Controls 1.5 import QtQuick.Layouts 1.2
Much appreciated :)