Files
qt-creator/src/plugins/qnx/qnxrunconfiguration.cpp

122 lines
4.3 KiB
C++
Raw Normal View History

/****************************************************************************
**
** Copyright (C) 2016 BlackBerry Limited. All rights reserved.
** Contact: KDAB (info@kdab.com)
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
****************************************************************************/
#include "qnxrunconfiguration.h"
#include "qnxconstants.h"
#include <projectexplorer/runnables.h>
#include <projectexplorer/target.h>
#include <qmakeprojectmanager/qmakeproject.h>
#include <qmakeprojectmanager/qmakenodes.h>
#include <remotelinux/remotelinuxrunconfigurationwidget.h>
#include <utils/environment.h>
#include <QLabel>
#include <QLineEdit>
using namespace ProjectExplorer;
using namespace RemoteLinux;
namespace Qnx {
namespace Internal {
const char QtLibPathKey[] = "Qt4ProjectManager.QnxRunConfiguration.QtLibPath";
QnxRunConfiguration::QnxRunConfiguration(Target *target)
: RemoteLinuxRunConfiguration(target)
{}
void QnxRunConfiguration::initialize(Core::Id id)
{
const QString projectFilePath = id.suffixAfter(Constants::QNX_QNX_RUNCONFIGURATION_PREFIX);
auto project = qobject_cast<QmakeProjectManager::QmakeProject *>(target()->project());
QTC_ASSERT(project, return);
for (const QmakeProjectManager::QmakeProFile *file : project->applicationProFiles()) {
if (file->filePath().toString() == projectFilePath) {
// Circumvent RemoteLinux's initialize() FIXME: Ugly.
RunConfiguration::initialize(id);
setTargetName(file->targetInformation().target);
return;
}
}
RemoteLinuxRunConfiguration::initialize(id);
}
Runnable QnxRunConfiguration::runnable() const
{
auto r = RemoteLinuxRunConfiguration::runnable().as<StandardRunnable>();
if (!m_qtLibPath.isEmpty()) {
r.environment.appendOrSet(QLatin1String("LD_LIBRARY_PATH"),
m_qtLibPath + QLatin1String("/lib:$LD_LIBRARY_PATH"));
r.environment.appendOrSet(QLatin1String("QML_IMPORT_PATH"),
m_qtLibPath + QLatin1String("/imports:$QML_IMPORT_PATH"));
r.environment.appendOrSet(QLatin1String("QML2_IMPORT_PATH"),
m_qtLibPath + QLatin1String("/qml:$QML2_IMPORT_PATH"));
r.environment.appendOrSet(QLatin1String("QT_PLUGIN_PATH"),
m_qtLibPath + QLatin1String("/plugins:$QT_PLUGIN_PATH"));
r.environment.set(QLatin1String("QT_QPA_FONTDIR"),
m_qtLibPath + QLatin1String("/lib/fonts"));
}
return r;
}
QWidget *QnxRunConfiguration::createConfigurationWidget()
{
auto rcWidget = qobject_cast<RemoteLinuxRunConfigurationWidget *>
(RemoteLinuxRunConfiguration::createConfigurationWidget());
auto label = new QLabel(tr("Path to Qt libraries on device:"));
auto lineEdit = new QLineEdit(m_qtLibPath);
connect(lineEdit, &QLineEdit::textChanged,
this, [this](const QString &path) { m_qtLibPath = path; });
rcWidget->addFormLayoutRow(label, lineEdit);
return rcWidget;
}
QVariantMap QnxRunConfiguration::toMap() const
{
QVariantMap map(RemoteLinuxRunConfiguration::toMap());
map.insert(QLatin1String(QtLibPathKey), m_qtLibPath);
return map;
}
bool QnxRunConfiguration::fromMap(const QVariantMap &map)
{
if (!RemoteLinuxRunConfiguration::fromMap(map))
return false;
m_qtLibPath = map.value(QLatin1String(QtLibPathKey)).toString();
return true;
}
} // namespace Internal
} // namespace Qnx