aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/sdktool/addqtoperation.h
blob: 5ade051a7072ce2fae408f2289e9bbf39fb2e9c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "operation.h"

class AddQtData
{
public:
    QVariantMap addQt(const QVariantMap &map) const;

    static QVariantMap initializeQtVersions();

    static bool exists(const QString &id);
    static bool exists(const QVariantMap &map, const QString &id);

    QString m_id; // actually this is the autodetectionSource
    QString m_displayName;
    QString m_type;
    QString m_qmake;
    QStringList m_abis;
    KeyValuePairList m_extra;
};

class AddQtOperation : public Operation, public AddQtData
{
private:
    QString name() const final;
    QString helpText() const final;
    QString argumentsHelpText() const final;
    bool setArguments(const QStringList &args) final;
    int execute() const final;

#ifdef WITH_TESTS
public:
    static void unittest();
     // TODO: Remove
#endif
};