summaryrefslogtreecommitdiff
path: root/src/tools/sdktool/addabiflavor.h
blob: 1227388687ad1a9b282342f0c01b581fbac03a12 (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
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "operation.h"

class AddAbiFlavorData
{
public:
    QVariantMap addAbiFlavor(const QVariantMap &map) const;

    static QVariantMap initializeAbiFlavors();

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

    QStringList m_oses;
    QString m_flavor;
};

class AddAbiFlavor : public Operation, public AddAbiFlavorData
{
public:
    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
    static void unittest();
#endif
};