forked from qt-creator/qt-creator
This re-uses what work in RemoteLinux. There's still a compile-time header dependency due to the QmakeProjectManager::Constants::KIT_INFORMATION_ID constant. Change-Id: I6d6b8bbaed8ec2e80d54afe62a5a6b7f84eb37ec Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
103 lines
3.6 KiB
C++
103 lines
3.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** 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 <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, Constants::QNX_QNX_RUNCONFIGURATION_PREFIX)
|
|
{}
|
|
|
|
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
|