/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** ** GNU Lesser General Public License Usage ** ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this file. ** Please review the following information to ensure the GNU Lesser General ** Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** **************************************************************************/ #include "maemoqtversion.h" #include "maemoconstants.h" #include "maemoglobal.h" #include #include #include #include #include #include using namespace Qt4ProjectManager; namespace Madde { namespace Internal { MaemoQtVersion::MaemoQtVersion() : QtSupport::BaseQtVersion() { } MaemoQtVersion::MaemoQtVersion(const Utils::FileName &path, bool isAutodetected, const QString &autodetectionSource) : QtSupport::BaseQtVersion(path, isAutodetected, autodetectionSource), m_osType(MaemoGlobal::osType(path.toString())), m_isvalidVersion(MaemoGlobal::isValidMaemoQtVersion(path.toString(), m_osType)) { } MaemoQtVersion::~MaemoQtVersion() { } void MaemoQtVersion::fromMap(const QVariantMap &map) { QtSupport::BaseQtVersion::fromMap(map); QString path = qmakeCommand().toString(); m_osType = MaemoGlobal::osType(path); m_isvalidVersion = MaemoGlobal::isValidMaemoQtVersion(path, m_osType); } QString MaemoQtVersion::type() const { return QtSupport::Constants::MAEMOQT; } bool MaemoQtVersion::isValid() const { return BaseQtVersion::isValid() && m_isvalidVersion; } MaemoQtVersion *MaemoQtVersion::clone() const { return new MaemoQtVersion(*this); } QString MaemoQtVersion::systemRoot() const { if (m_systemRoot.isNull()) { QFile file(QDir::cleanPath(MaemoGlobal::targetRoot(qmakeCommand().toString())) + QLatin1String("/information")); if (file.exists() && file.open(QIODevice::ReadOnly | QIODevice::Text)) { QTextStream stream(&file); while (!stream.atEnd()) { const QString &line = stream.readLine().trimmed(); const QStringList &list = line.split(QLatin1Char(' ')); if (list.count() <= 1) continue; if (list.at(0) == QLatin1String("sysroot")) { m_systemRoot = MaemoGlobal::maddeRoot(qmakeCommand().toString()) + QLatin1String("/sysroots/") + list.at(1); } } } } return m_systemRoot; } QList MaemoQtVersion::detectQtAbis() const { QList result; if (!m_isvalidVersion) return result; if (m_osType == QLatin1String(Maemo5OsType)) { result.append(ProjectExplorer::Abi(ProjectExplorer::Abi::ArmArchitecture, ProjectExplorer::Abi::LinuxOS, ProjectExplorer::Abi::MaemoLinuxFlavor, ProjectExplorer::Abi::ElfFormat, 32)); } else if (m_osType == QLatin1String(HarmattanOsType)) { result.append(ProjectExplorer::Abi(ProjectExplorer::Abi::ArmArchitecture, ProjectExplorer::Abi::LinuxOS, ProjectExplorer::Abi::HarmattanLinuxFlavor, ProjectExplorer::Abi::ElfFormat, 32)); } else if (m_osType == QLatin1String(MeeGoOsType)) { result.append(ProjectExplorer::Abi(ProjectExplorer::Abi::ArmArchitecture, ProjectExplorer::Abi::LinuxOS, ProjectExplorer::Abi::MeegoLinuxFlavor, ProjectExplorer::Abi::ElfFormat, 32)); } return result; } bool MaemoQtVersion::supportsTargetId(const QString &id) const { return supportedTargetIds().contains(id); } QSet MaemoQtVersion::supportedTargetIds() const { QSet result; if (!m_isvalidVersion) return result; if (m_osType == QLatin1String(Maemo5OsType)) { result.insert(QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID)); } else if (m_osType == QLatin1String(HarmattanOsType)) { result.insert(QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID)); } else if (m_osType == QLatin1String(MeeGoOsType)) { result.insert(QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID)); } return result; } QString MaemoQtVersion::description() const { if (m_osType == QLatin1String(Maemo5OsType)) return QCoreApplication::translate("QtVersion", "Maemo", "Qt Version is meant for Maemo5"); else if (m_osType == QLatin1String(HarmattanOsType)) return QCoreApplication::translate("QtVersion", "Harmattan ", "Qt Version is meant for Harmattan"); else if (m_osType == QLatin1String(MeeGoOsType)) return QCoreApplication::translate("QtVersion", "MeeGo", "Qt Version is meant for MeeGo"); return QString(); } bool MaemoQtVersion::supportsShadowBuilds() const { #ifdef Q_OS_WIN return false; #endif return true; } QString MaemoQtVersion::osType() const { return m_osType; } void MaemoQtVersion::addToEnvironment(Utils::Environment &env) const { const QString maddeRoot = MaemoGlobal::maddeRoot(qmakeCommand().toString()); // Needed to make pkg-config stuff work. env.prependOrSet(QLatin1String("SYSROOT_DIR"), QDir::toNativeSeparators(systemRoot())); env.prependOrSetPath(QDir::toNativeSeparators(QString("%1/madbin") .arg(maddeRoot))); env.prependOrSetPath(QDir::toNativeSeparators(QString("%1/madlib") .arg(maddeRoot))); env.prependOrSet(QLatin1String("PERL5LIB"), QDir::toNativeSeparators(QString("%1/madlib/perl5").arg(maddeRoot))); env.prependOrSetPath(QDir::toNativeSeparators(QString("%1/bin").arg(maddeRoot))); env.prependOrSetPath(QDir::toNativeSeparators(QString("%1/bin") .arg(MaemoGlobal::targetRoot(qmakeCommand().toString())))); } } // namespace Internal } // namespace Madde