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

#include "qdbqtversion.h"

#include "qdbconstants.h"
#include "qdbtr.h"

namespace Qdb::Internal {

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

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

}

} // Qdb::Internal