From 195b793686ee047772a82c77ab7b222c246c1881 Mon Sep 17 00:00:00 2001 From: probonopd Date: Fri, 26 May 2017 01:50:34 +0200 Subject: [PATCH] Do not exit if qmlimportscanner is not found --- shared/shared.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 023058e..316ba5a 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -1282,8 +1282,8 @@ bool deployQmlImports(const QString &appDirPath, DeploymentInfo deploymentInfo, // Verify that we found a qmlimportscanner binary if (!QFile(qmlImportScannerPath).exists()) { LogError() << "qmlimportscanner not found at" << qmlImportScannerPath; - LogError() << "Rebuild qtdeclarative/tools/qmlimportscanner"; - return false; + LogError() << "Please install it if you want to bundle QML based applications."; + return true; } // build argument list for qmlimportsanner: "-rootPath foo/ -rootPath bar/ -importPath path/to/qt/qml"