forked from qt-creator/qt-creator
BaseQtVersion: Return FilePath from frameworkInstallPath
Rename the method to frameworkPath to be more in line with the rest. Change-Id: I3e018ca91e027a95d1ef4993705781957bc68144 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -260,8 +260,9 @@ void QmakeProject::updateCppCodeModel()
|
||||
headerPaths += headerPath;
|
||||
}
|
||||
|
||||
if (kitInfo.qtVersion && !kitInfo.qtVersion->frameworkInstallPath().isEmpty())
|
||||
headerPaths += {kitInfo.qtVersion->frameworkInstallPath(), HeaderPathType::Framework};
|
||||
if (kitInfo.qtVersion && !kitInfo.qtVersion->frameworkPath().isEmpty())
|
||||
headerPaths += {kitInfo.qtVersion->frameworkPath().toString(),
|
||||
HeaderPathType::Framework};
|
||||
rpp.setHeaderPaths(headerPaths);
|
||||
|
||||
// Files and generators
|
||||
|
||||
Reference in New Issue
Block a user