forked from qt-creator/qt-creator
Abi: Recognize harmattan as linux flavor
... when parsing an abi string Change-Id: Icb6fc352ff2d58f6ae7f38eba803c12f2d3d082a Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
@@ -385,6 +385,8 @@ Abi::Abi(const QString &abiString) :
|
||||
m_osFlavor = OpenBsdFlavor;
|
||||
else if (abiParts.at(2) == QLatin1String("maemo") && m_os == LinuxOS)
|
||||
m_osFlavor = MaemoLinuxFlavor;
|
||||
else if (abiParts.at(2) == QLatin1String("harmattan") && m_os == LinuxOS)
|
||||
m_osFlavor = HarmattanLinuxFlavor;
|
||||
else if (abiParts.at(2) == QLatin1String("meego") && m_os == LinuxOS)
|
||||
m_osFlavor = MeegoLinuxFlavor;
|
||||
else if (abiParts.at(2) == QLatin1String("generic") && m_os == MacOS)
|
||||
|
||||
Reference in New Issue
Block a user