Commit b0d0c6c3 authored by Michael Brüning's avatar Michael Brüning Committed by Michael Bruning
Browse files

Provide a fallback for the QtWebEngineProcess executable path.


This makes deployment easier and was also what was done in QtWebKit
for the WebKit2 WebProcess executable

Change-Id: I2245c1f3337f19509c08c08c0baf40dc0a964890
Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@digia.com>
Showing with 9 additions and 5 deletions
......@@ -96,18 +96,22 @@ QString subProcessPath()
{
static bool initialized = false;
#if defined(OS_WIN)
static QString processPath (location(QLibraryInfo::LibraryExecutablesPath)
% QDir::separator() % QStringLiteral(QTWEBENGINEPROCESS_NAME) % QStringLiteral(".exe"));
static QString processBinary (QStringLiteral(QTWEBENGINEPROCESS_NAME) % QStringLiteral(".exe"));
#else
static QString processPath (location(QLibraryInfo::LibraryExecutablesPath)
% QDir::separator() % QStringLiteral(QTWEBENGINEPROCESS_NAME));
static QString processBinary (QStringLiteral(QTWEBENGINEPROCESS_NAME));
#endif
static QString processPath (location(QLibraryInfo::LibraryExecutablesPath)
% QDir::separator() % processBinary);
if (!initialized) {
// Allow overriding at runtime for the time being.
const QByteArray fromEnv = qgetenv("QTWEBENGINEPROCESS_PATH");
if (!fromEnv.isEmpty())
processPath = QString::fromLatin1(fromEnv);
if (processPath.isEmpty() || !QFileInfo(processPath).exists())
if (processPath.isEmpty() || !QFileInfo(processPath).exists()) {
qWarning("QtWebEngineProcess not found at location %s. Trying fallback path...", qPrintable(processPath));
processPath = QCoreApplication::applicationDirPath() % QDir::separator() % processBinary;
}
if (!QFileInfo(processPath).exists())
qFatal("QtWebEngineProcess not found at location %s. Try setting the QTWEBENGINEPROCESS_PATH environment variable.", qPrintable(processPath));
initialized = true;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment