From f86c9b65726e879652561e6db04e6688bc48f48c Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Mon, 18 Apr 2011 14:13:18 +0200 Subject: QmlDump: Ensure that qmldump is found in QtSDK We ship a precompiled qmldump in the Qt SDK because the Qt versions don't have private headers. However, the logic in buildablehelperlibrary by default rejects any build that is older than the latest changes to the qmldump source code files; allow Qt Creator to pick up the (maybe outdated) qmldump nevertheless if no private headers are installed. Reviewed-by: ckamm Task-number: QTCREATORBUG-4578 --- src/plugins/qt4projectmanager/qmldebugginglibrary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/qt4projectmanager/qmldebugginglibrary.cpp') diff --git a/src/plugins/qt4projectmanager/qmldebugginglibrary.cpp b/src/plugins/qt4projectmanager/qmldebugginglibrary.cpp index f7d33b6ecf..379275c73b 100644 --- a/src/plugins/qt4projectmanager/qmldebugginglibrary.cpp +++ b/src/plugins/qt4projectmanager/qmldebugginglibrary.cpp @@ -62,7 +62,7 @@ QString QmlDebuggingLibrary::libraryByInstallData(const QString &qtInstallData, } binFilenames << QLatin1String("libQmlJSDebugger.a"); - return byInstallDataHelper(sourcePath(), sourceFileNames(), directories, binFilenames); + return byInstallDataHelper(sourcePath(), sourceFileNames(), directories, binFilenames, false); } bool QmlDebuggingLibrary::canBuild(const QtVersion *qtVersion) -- cgit v1.2.1