forked from qt-creator/qt-creator
Add the path to the installed Qt Frameworks on Mac.
Otherwise all the Qt headers might not be found at all. Task-number: QTCREATORBUG-1377 Reviewed-by: Tobias Hunger Reviewed-by: Erik Verbruggen
This commit is contained in:
@@ -1725,6 +1725,16 @@ QString QtVersion::headerInstallPath() const
|
||||
return m_versionInfo["QT_INSTALL_HEADERS"];
|
||||
}
|
||||
|
||||
QString QtVersion::frameworkInstallPath() const
|
||||
{
|
||||
#ifdef Q_OS_MAC
|
||||
updateVersionInfo();
|
||||
return m_versionInfo["QT_INSTALL_LIBS"];
|
||||
#else
|
||||
return QString();
|
||||
#endif
|
||||
}
|
||||
|
||||
bool QtVersion::hasExamples() const
|
||||
{
|
||||
updateVersionInfo();
|
||||
|
||||
Reference in New Issue
Block a user