2009-07-20 10:17:30 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, 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.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2009-07-20 10:17:30 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2009-05-26 15:31:29 +02:00
|
|
|
#include "s60devices.h"
|
2009-11-13 15:47:35 +01:00
|
|
|
#include "gccetoolchain.h"
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/environment.h>
|
2009-05-26 15:31:29 +02:00
|
|
|
|
|
|
|
|
#include <QtCore/QSettings>
|
|
|
|
|
#include <QtCore/QXmlStreamReader>
|
2009-10-22 16:42:25 +02:00
|
|
|
#include <QtCore/QTextStream>
|
2009-05-26 15:31:29 +02:00
|
|
|
#include <QtCore/QFile>
|
|
|
|
|
#include <QtCore/QDir>
|
2009-10-22 16:42:25 +02:00
|
|
|
#include <QtCore/QCoreApplication>
|
|
|
|
|
#include <QtCore/QDebug>
|
2009-05-26 15:31:29 +02:00
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
const char * const SYMBIAN_SDKS_KEY = "HKEY_LOCAL_MACHINE\\Software\\Symbian\\EPOC SDKs";
|
|
|
|
|
const char * const SYMBIAN_PATH_KEY = "CommonPath";
|
|
|
|
|
const char * const SYMBIAN_DEVICES_FILE = "devices.xml";
|
|
|
|
|
const char * const DEVICES_LIST = "devices";
|
|
|
|
|
const char * const DEVICE = "device";
|
|
|
|
|
const char * const DEVICE_ID = "id";
|
|
|
|
|
const char * const DEVICE_NAME = "name";
|
|
|
|
|
const char * const DEVICE_DEFAULT = "default";
|
|
|
|
|
const char * const DEVICE_EPOCROOT = "epocroot";
|
|
|
|
|
const char * const DEVICE_TOOLSROOT = "toolsroot";
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-22 16:42:25 +02:00
|
|
|
namespace Qt4ProjectManager {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
S60Devices::Device::Device() :
|
|
|
|
|
isDefault(false)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString S60Devices::Device::toHtml() const
|
|
|
|
|
{
|
|
|
|
|
QString rc;
|
|
|
|
|
QTextStream str(&rc);
|
|
|
|
|
str << "<html><body><table>"
|
|
|
|
|
<< "<tr><td><b>" << QCoreApplication::translate("Qt4ProjectManager::Internal::S60Devices::Device", "Id:")
|
|
|
|
|
<< "</b></td><td>" << id << "</td></tr>"
|
|
|
|
|
<< "<tr><td><b>" << QCoreApplication::translate("Qt4ProjectManager::Internal::S60Devices::Device", "Name:")
|
|
|
|
|
<< "</b></td><td>" << name << "</td></tr>"
|
|
|
|
|
<< "<tr><td><b>" << QCoreApplication::translate("Qt4ProjectManager::Internal::S60Devices::Device", "EPOC:")
|
|
|
|
|
<< "</b></td><td>" << epocRoot << "</td></tr>"
|
|
|
|
|
<< "<tr><td><b>" << QCoreApplication::translate("Qt4ProjectManager::Internal::S60Devices::Device", "Tools:")
|
|
|
|
|
<< "</b></td><td>" << toolsRoot << "</td></tr>"
|
|
|
|
|
<< "<tr><td><b>" << QCoreApplication::translate("Qt4ProjectManager::Internal::S60Devices::Device", "Qt:")
|
|
|
|
|
<< "</b></td><td>" << qt << "</td></tr>";
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
2009-05-26 15:31:29 +02:00
|
|
|
|
|
|
|
|
S60Devices::S60Devices(QObject *parent)
|
|
|
|
|
: QObject(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-13 15:47:35 +01:00
|
|
|
// GNU-Poc stuff
|
|
|
|
|
static const char *gnuPocRootC = "GNUPOC_ROOT";
|
|
|
|
|
|
|
|
|
|
static inline QString msgEnvVarNotSet(const char *var)
|
|
|
|
|
{
|
|
|
|
|
return QString::fromLatin1("The environment variable %1 is not set.").arg(QLatin1String(var));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline QString msgEnvVarDirNotExist(const QString &dir, const char *var)
|
|
|
|
|
{
|
|
|
|
|
return QString::fromLatin1("The directory %1 pointed to by the environment variable %2 is not set.").arg(dir, QLatin1String(var));
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-22 16:42:25 +02:00
|
|
|
bool S60Devices::readLinux()
|
|
|
|
|
{
|
2009-11-13 15:47:35 +01:00
|
|
|
// Detect GNUPOC_ROOT/EPOC ROOT
|
|
|
|
|
const QByteArray gnuPocRootA = qgetenv(gnuPocRootC);
|
|
|
|
|
if (gnuPocRootA.isEmpty()) {
|
|
|
|
|
m_errorString = msgEnvVarNotSet(gnuPocRootC);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QDir gnuPocRootDir(QString::fromLocal8Bit(gnuPocRootA));
|
|
|
|
|
if (!gnuPocRootDir.exists()) {
|
|
|
|
|
m_errorString = msgEnvVarDirNotExist(gnuPocRootDir.absolutePath(), gnuPocRootC);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QDir epocDir(gnuPocRootDir.absolutePath() + QLatin1String("/symbian-sdks/5.0"));
|
|
|
|
|
if (!epocDir.exists()) {
|
|
|
|
|
m_errorString = QString::fromLatin1("EPOC could not be found at %1.").arg(epocDir.absolutePath());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
// Check Qt
|
|
|
|
|
Device device;
|
|
|
|
|
device.id = device.name = QLatin1String("GnuPoc");
|
|
|
|
|
device.epocRoot = epocDir.absolutePath();
|
|
|
|
|
device.toolsRoot = gnuPocRootDir.absolutePath();
|
|
|
|
|
device.isDefault = true;
|
|
|
|
|
m_devices.push_back(device);
|
|
|
|
|
return true;
|
2009-10-22 16:42:25 +02:00
|
|
|
}
|
|
|
|
|
|
2009-05-26 15:31:29 +02:00
|
|
|
bool S60Devices::read()
|
|
|
|
|
{
|
|
|
|
|
m_devices.clear();
|
2009-10-22 16:42:25 +02:00
|
|
|
m_errorString.clear();
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
return readWin();
|
|
|
|
|
#else
|
|
|
|
|
return readLinux();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-20 15:58:24 +01:00
|
|
|
// Windows: Get list of paths containing common program data
|
|
|
|
|
// as pointed to by environment.
|
|
|
|
|
static QStringList commonProgramFilesPaths()
|
|
|
|
|
{
|
|
|
|
|
const QChar pathSep = QLatin1Char(';');
|
|
|
|
|
QStringList rc;
|
|
|
|
|
const QByteArray commonX86 = qgetenv("CommonProgramFiles(x86)");
|
|
|
|
|
if (!commonX86.isEmpty())
|
|
|
|
|
rc += QString::fromLocal8Bit(commonX86).split(pathSep);
|
|
|
|
|
const QByteArray common = qgetenv("CommonProgramFiles");
|
|
|
|
|
if (!common.isEmpty())
|
|
|
|
|
rc += QString::fromLocal8Bit(common).split(pathSep);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-22 16:42:25 +02:00
|
|
|
// Windows EPOC
|
|
|
|
|
|
2009-11-20 15:58:24 +01:00
|
|
|
// Find the "devices.xml" file containing the SDKs
|
|
|
|
|
static QString devicesXmlFile(QString *errorMessage)
|
2009-10-22 16:42:25 +02:00
|
|
|
{
|
2009-11-20 15:58:24 +01:00
|
|
|
const QString devicesFile = QLatin1String(SYMBIAN_DEVICES_FILE);
|
|
|
|
|
// Try registry
|
|
|
|
|
const QSettings settings(QLatin1String(SYMBIAN_SDKS_KEY), QSettings::NativeFormat);
|
|
|
|
|
const QString devicesRegistryXmlPath = settings.value(QLatin1String(SYMBIAN_PATH_KEY)).toString();
|
|
|
|
|
if (!devicesRegistryXmlPath.isEmpty())
|
|
|
|
|
return QDir::cleanPath(devicesRegistryXmlPath + QLatin1Char('/') + devicesFile);
|
|
|
|
|
// Look up common program data files
|
|
|
|
|
const QString symbianDir = QLatin1String("/symbian/");
|
|
|
|
|
foreach(const QString &commonDataDir, commonProgramFilesPaths()) {
|
|
|
|
|
const QFileInfo fi(commonDataDir + symbianDir + devicesFile);
|
|
|
|
|
if (fi.isFile())
|
|
|
|
|
return fi.absoluteFilePath();
|
2009-05-26 15:31:29 +02:00
|
|
|
}
|
2009-11-20 15:58:24 +01:00
|
|
|
// None found...
|
|
|
|
|
*errorMessage = QString::fromLatin1("The file '%1' containing the device SDK configuration "
|
|
|
|
|
"could not be found looking at the registry key "
|
|
|
|
|
"%2\\%3 or the common program data directories.").
|
|
|
|
|
arg(devicesFile, QLatin1String(SYMBIAN_SDKS_KEY),
|
|
|
|
|
QLatin1String(SYMBIAN_PATH_KEY));
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
2009-05-26 15:31:29 +02:00
|
|
|
|
2009-11-20 15:58:24 +01:00
|
|
|
bool S60Devices::readWin()
|
|
|
|
|
{
|
|
|
|
|
const QString devicesXmlPath = devicesXmlFile(&m_errorString);
|
|
|
|
|
if (devicesXmlPath.isEmpty())
|
|
|
|
|
return false;
|
2009-05-26 15:31:29 +02:00
|
|
|
QFile devicesFile(devicesXmlPath);
|
2009-11-20 15:58:24 +01:00
|
|
|
if (!devicesFile.open(QIODevice::ReadOnly|QIODevice::Text)) {
|
|
|
|
|
m_errorString = QString::fromLatin1("Could not open the devices file %1: %2").arg(devicesXmlPath, devicesFile.errorString());
|
2009-05-26 15:31:29 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
QXmlStreamReader xml(&devicesFile);
|
|
|
|
|
while (!xml.atEnd()) {
|
|
|
|
|
xml.readNext();
|
|
|
|
|
if (xml.isStartElement() && xml.name() == DEVICES_LIST) {
|
|
|
|
|
if (xml.attributes().value("version") == "1.0") {
|
|
|
|
|
// Look for correct device
|
|
|
|
|
while (!(xml.isEndElement() && xml.name() == DEVICES_LIST) && !xml.atEnd()) {
|
|
|
|
|
xml.readNext();
|
|
|
|
|
if (xml.isStartElement() && xml.name() == DEVICE) {
|
|
|
|
|
Device device;
|
|
|
|
|
device.id = xml.attributes().value(DEVICE_ID).toString();
|
|
|
|
|
device.name = xml.attributes().value(DEVICE_NAME).toString();
|
|
|
|
|
if (xml.attributes().value(DEVICE_DEFAULT).toString() == "yes")
|
|
|
|
|
device.isDefault = true;
|
|
|
|
|
else
|
|
|
|
|
device.isDefault = false;
|
|
|
|
|
while (!(xml.isEndElement() && xml.name() == DEVICE) && !xml.atEnd()) {
|
|
|
|
|
xml.readNext();
|
|
|
|
|
if (xml.isStartElement() && xml.name() == DEVICE_EPOCROOT) {
|
2009-11-19 11:13:50 +01:00
|
|
|
device.epocRoot = QDir::fromNativeSeparators(xml.readElementText());
|
2009-05-26 15:31:29 +02:00
|
|
|
} else if (xml.isStartElement() && xml.name() == DEVICE_TOOLSROOT) {
|
2009-11-19 11:13:50 +01:00
|
|
|
device.toolsRoot = QDir::fromNativeSeparators(xml.readElementText());
|
2009-05-26 15:31:29 +02:00
|
|
|
}
|
|
|
|
|
}
|
2009-10-27 15:26:37 +01:00
|
|
|
if (device.toolsRoot.isEmpty())
|
|
|
|
|
device.toolsRoot = device.epocRoot;
|
2009-05-26 15:31:29 +02:00
|
|
|
m_devices.append(device);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
xml.raiseError("Invalid 'devices' element version.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
devicesFile.close();
|
|
|
|
|
if (xml.hasError()) {
|
2009-11-20 15:58:24 +01:00
|
|
|
m_errorString = QString::fromLatin1("Syntax error in devices file %1: %2").
|
|
|
|
|
arg(devicesXmlPath, xml.errorString());
|
2009-05-26 15:31:29 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool S60Devices::detectQtForDevices()
|
|
|
|
|
{
|
2009-12-02 15:26:21 +01:00
|
|
|
// Do not normalize these backslashes since they are in ARM binaries:
|
|
|
|
|
const QByteArray indicator("\\src\\corelib\\kernel\\qobject.h");
|
|
|
|
|
const int indicatorlength = indicator.size();
|
2009-05-26 15:31:29 +02:00
|
|
|
for (int i = 0; i < m_devices.size(); ++i) {
|
2009-11-19 11:13:50 +01:00
|
|
|
if (!m_devices.at(i).qt.isEmpty())
|
2009-11-13 15:47:35 +01:00
|
|
|
continue;
|
2009-11-19 11:13:50 +01:00
|
|
|
QFile qtDll(QString("%1/epoc32/release/winscw/udeb/QtCore.dll").arg(m_devices.at(i).epocRoot));
|
2009-05-26 15:31:29 +02:00
|
|
|
if (!qtDll.exists() || !qtDll.open(QIODevice::ReadOnly)) {
|
|
|
|
|
m_devices[i].qt = QString();
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
QByteArray buffer;
|
|
|
|
|
int index = -1;
|
|
|
|
|
while (!qtDll.atEnd()) {
|
|
|
|
|
buffer = qtDll.read(10000);
|
2009-12-02 15:26:21 +01:00
|
|
|
index = buffer.indexOf(indicator);
|
2009-05-26 15:31:29 +02:00
|
|
|
if (index >= 0)
|
|
|
|
|
break;
|
|
|
|
|
if (!qtDll.atEnd())
|
|
|
|
|
qtDll.seek(qtDll.pos()-indicatorlength);
|
|
|
|
|
}
|
|
|
|
|
int lastIndex = index;
|
2009-12-02 14:26:06 +01:00
|
|
|
while (index >= 0 && buffer.at(index))
|
|
|
|
|
--index;
|
2009-05-26 15:31:29 +02:00
|
|
|
if (index < 0) { // this is untested
|
|
|
|
|
} else {
|
|
|
|
|
index += 2; // the 0 and another byte for some reason
|
2009-11-19 11:13:50 +01:00
|
|
|
m_devices[i].qt = QDir(buffer.mid(index, lastIndex-index)).absolutePath();
|
2009-05-26 15:31:29 +02:00
|
|
|
}
|
|
|
|
|
qtDll.close();
|
|
|
|
|
}
|
2009-05-28 16:48:02 +02:00
|
|
|
emit qtVersionsChanged();
|
2009-05-26 15:31:29 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString S60Devices::errorString() const
|
|
|
|
|
{
|
|
|
|
|
return m_errorString;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<S60Devices::Device> S60Devices::devices() const
|
|
|
|
|
{
|
|
|
|
|
return m_devices;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-28 18:36:52 +02:00
|
|
|
S60Devices::Device S60Devices::deviceForId(const QString &id) const
|
2009-05-26 15:31:29 +02:00
|
|
|
{
|
|
|
|
|
foreach (const S60Devices::Device &i, m_devices) {
|
2009-05-28 18:36:52 +02:00
|
|
|
if (i.id == id) {
|
2009-05-26 15:31:29 +02:00
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return Device();
|
|
|
|
|
}
|
2009-05-28 18:36:52 +02:00
|
|
|
|
2009-10-27 17:59:53 +01:00
|
|
|
S60Devices::Device S60Devices::deviceForEpocRoot(const QString &root) const
|
|
|
|
|
{
|
|
|
|
|
foreach (const S60Devices::Device &i, m_devices) {
|
|
|
|
|
if (i.epocRoot == root) {
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return Device();
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-28 18:36:52 +02:00
|
|
|
QString S60Devices::cleanedRootPath(const QString &deviceRoot)
|
|
|
|
|
{
|
|
|
|
|
QString path = deviceRoot;
|
2009-11-19 11:13:50 +01:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
// sbsv2 actually recommends having the DK on a separate drive...
|
|
|
|
|
// But QMake breaks when doing that!
|
|
|
|
|
if (path.size() > 1 && path.at(1) == QChar(':'))
|
2009-05-28 18:36:52 +02:00
|
|
|
path = path.mid(2);
|
2009-11-19 11:13:50 +01:00
|
|
|
#endif
|
2009-05-28 18:36:52 +02:00
|
|
|
|
2009-11-19 11:13:50 +01:00
|
|
|
if (!path.size() || path.at(path.size()-1) != '/')
|
|
|
|
|
path.append('/');
|
2009-05-28 18:36:52 +02:00
|
|
|
return path;
|
|
|
|
|
}
|
2009-10-22 16:42:25 +02:00
|
|
|
|
2009-11-13 15:47:35 +01:00
|
|
|
// S60ToolChainMixin
|
|
|
|
|
S60ToolChainMixin::S60ToolChainMixin(const S60Devices::Device &d) :
|
|
|
|
|
m_device(d)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const S60Devices::Device & S60ToolChainMixin::device() const
|
|
|
|
|
{
|
|
|
|
|
return m_device;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool S60ToolChainMixin::equals(const S60ToolChainMixin &rhs) const
|
|
|
|
|
{
|
|
|
|
|
return m_device.id == rhs.m_device.id
|
|
|
|
|
&& m_device.name == rhs.m_device.name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<ProjectExplorer::HeaderPath> S60ToolChainMixin::epocHeaderPaths() const
|
|
|
|
|
{
|
|
|
|
|
QList<ProjectExplorer::HeaderPath> rc;
|
2009-11-19 11:13:50 +01:00
|
|
|
|
|
|
|
|
const QString epocRootPath(S60Devices::cleanedRootPath(m_device.epocRoot));
|
|
|
|
|
|
|
|
|
|
rc << ProjectExplorer::HeaderPath(epocRootPath,
|
|
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
|
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/stdapis"),
|
|
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
|
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/stdapis/sys"),
|
2009-11-13 15:47:35 +01:00
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
2009-11-19 11:13:50 +01:00
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/stdapis/stlportv5"),
|
2009-11-13 15:47:35 +01:00
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
2009-11-19 11:13:50 +01:00
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/mw"),
|
2009-11-13 15:47:35 +01:00
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
2009-11-19 11:13:50 +01:00
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/mw"),
|
|
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
|
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform"),
|
|
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
|
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/loc"),
|
|
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
|
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/mw/loc"),
|
|
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
|
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/loc/sc"),
|
|
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath)
|
|
|
|
|
<< ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/mw/loc/sc"),
|
2009-11-13 15:47:35 +01:00
|
|
|
ProjectExplorer::HeaderPath::GlobalHeaderPath);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60ToolChainMixin::addEpocToEnvironment(ProjectExplorer::Environment *env) const
|
|
|
|
|
{
|
2009-11-19 11:13:50 +01:00
|
|
|
const QString epocRootPath(S60Devices::cleanedRootPath(m_device.epocRoot));
|
|
|
|
|
|
|
|
|
|
env->prependOrSetPath(QDir::toNativeSeparators(epocRootPath + QLatin1String("epoc32/tools"))); // e.g. make.exe
|
|
|
|
|
env->prependOrSetPath(QDir::toNativeSeparators(epocRootPath + QLatin1String("epoc32/gcc/bin"))); // e.g. gcc.exe
|
|
|
|
|
env->prependOrSetPath(QDir::toNativeSeparators(epocRootPath + QLatin1String("perl/bin"))); // e.g. perl.exe (special SDK version)
|
|
|
|
|
|
|
|
|
|
QString sbsHome(env->value(QLatin1String("SBS_HOME"))); // Do we use Raptor/SBSv2?
|
|
|
|
|
if (!sbsHome.isEmpty())
|
|
|
|
|
env->prependOrSetPath(sbsHome + QDir::separator() + QLatin1String("bin"));
|
|
|
|
|
|
2009-11-13 15:47:35 +01:00
|
|
|
env->set(QLatin1String("EPOCDEVICE"), m_device.id + QLatin1Char(':') + m_device.name);
|
2009-11-19 11:13:50 +01:00
|
|
|
env->set(QLatin1String("EPOCROOT"), QDir::toNativeSeparators(epocRootPath));
|
2009-11-13 15:47:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<ProjectExplorer::HeaderPath> S60ToolChainMixin::gnuPocHeaderPaths() const
|
|
|
|
|
{
|
|
|
|
|
return QList<ProjectExplorer::HeaderPath>(); // TODO:
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void S60ToolChainMixin::addGnuPocToEnvironment(ProjectExplorer::Environment *env) const
|
|
|
|
|
{
|
2009-11-19 11:13:50 +01:00
|
|
|
env->prependOrSetPath(QDir::toNativeSeparators(m_device.toolsRoot + QLatin1String("/bin")));
|
|
|
|
|
env->set(QLatin1String("EPOCROOT"), QDir::toNativeSeparators(S60Devices::cleanedRootPath(m_device.epocRoot)));
|
2009-11-13 15:47:35 +01:00
|
|
|
}
|
|
|
|
|
|
2009-10-22 16:42:25 +02:00
|
|
|
QDebug operator<<(QDebug db, const S60Devices::Device &d)
|
|
|
|
|
{
|
|
|
|
|
QDebug nospace = db.nospace();
|
|
|
|
|
nospace << "id='" << d.id << "' name='" << d.name << "' default="
|
|
|
|
|
<< d.isDefault << " Epoc='" << d.epocRoot << "' tools='"
|
|
|
|
|
<< d.toolsRoot << "' Qt='" << d.qt << '\'';
|
|
|
|
|
return db;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug dbg, const S60Devices &d)
|
|
|
|
|
{
|
|
|
|
|
foreach(const S60Devices::Device &device, d.devices())
|
|
|
|
|
dbg << device;
|
|
|
|
|
return dbg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qt4ProjectManager
|