aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/boot2qt/qdbqtversion.cpp
blob: 546b0be50a955ba5cdb63764b7528065d6b6ce54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "qdbqtversion.h"

#include "qdbconstants.h"

namespace Qdb {
namespace Internal {

QString QdbQtVersion::description() const
{
    return QCoreApplication::translate("QtVersion", "Boot2Qt", "Qt version is used for Boot2Qt development");
}

QSet<Utils::Id> QdbQtVersion::targetDeviceTypes() const
{
    return {Utils::Id(Constants::QdbLinuxOsType)};

}

} // namespace Internal
} // namespace Qdb