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:
con
2010-10-18 17:12:44 +02:00
parent 8f0b3f463f
commit 9240ceaf35
3 changed files with 15 additions and 0 deletions

View File

@@ -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();