forked from qt-creator/qt-creator
QmakeProjectManager: Ensure consistent include path lists
... before and after a build. The previous algorithm did not guarantee the same order, leading to failure when analyzing an unbuilt project with clang-tidy/clazy. Change-Id: I8a700408ca0c23b1b14b47ebfe334a41c52afa5b Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -1839,15 +1839,24 @@ QStringList QmakeProFile::includePaths(QtSupport::ProFileReader *reader, const F
|
||||
}
|
||||
|
||||
bool tryUnfixified = false;
|
||||
|
||||
// These paths should not be checked for existence, to ensure consistent include path lists
|
||||
// before and after building.
|
||||
const QString mocDir = mocDirPath(reader, buildDir);
|
||||
const QString uiDir = uiDirPath(reader, buildDir);
|
||||
|
||||
foreach (const ProFileEvaluator::SourceFile &el,
|
||||
reader->fixifiedValues(QLatin1String("INCLUDEPATH"), projectDir, buildDir.toString(),
|
||||
false)) {
|
||||
const QString sysrootifiedPath = sysrootify(el.fileName, sysroot.toString(), projectDir,
|
||||
buildDir.toString());
|
||||
if (IoUtils::isAbsolutePath(sysrootifiedPath) && IoUtils::exists(sysrootifiedPath))
|
||||
if (IoUtils::isAbsolutePath(sysrootifiedPath)
|
||||
&& (IoUtils::exists(sysrootifiedPath) || sysrootifiedPath == mocDir
|
||||
|| sysrootifiedPath == uiDir)) {
|
||||
paths << sysrootifiedPath;
|
||||
else
|
||||
} else {
|
||||
tryUnfixified = true;
|
||||
}
|
||||
}
|
||||
|
||||
// If sysrootifying a fixified path does not yield a valid path, try again with the
|
||||
@@ -1862,10 +1871,6 @@ QStringList QmakeProFile::includePaths(QtSupport::ProFileReader *reader, const F
|
||||
}
|
||||
}
|
||||
|
||||
// paths already contains moc dir and ui dir, due to corrrectly parsing uic.prf and moc.prf
|
||||
// except if those directories don't exist at the time of parsing
|
||||
// thus we add those directories manually (without checking for existence)
|
||||
paths << mocDirPath(reader, buildDir) << uiDirPath(reader, buildDir);
|
||||
paths.removeDuplicates();
|
||||
return paths;
|
||||
}
|
||||
|
Reference in New Issue
Block a user