aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprojectmanager/mcubuildstep.h
blob: e1167e1917a9a9360ea880f4edcc45e79a808516 (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
41
42
// Copyright (C) 2023 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 "projectexplorer/kit.h"
#include "projectexplorer/project.h"
#include <projectexplorer/abstractprocessstep.h>
#include <projectexplorer/buildstep.h>
#include <utils/id.h>

#include <QTemporaryDir>

namespace QmlProjectManager {

class DeployMcuProcessStep : public ProjectExplorer::AbstractProcessStep
{
public:
    static const Utils::Id id;
    static void showError(const QString& text);

    DeployMcuProcessStep(ProjectExplorer::BuildStepList *bc, Utils::Id id);

private:
    bool init() override;
    void doRun() override;
    QString findKitInformation(ProjectExplorer::Kit* kit, const QString& key);

    static const QString processCommandKey;
    static const QString processArgumentsKey;
    static const QString processWorkingDirectoryKey;
    QTemporaryDir m_tmpDir;
};

class MCUBuildStepFactory : public ProjectExplorer::BuildStepFactory
{
public:
    MCUBuildStepFactory();
    static void attachToTarget(ProjectExplorer::Target *target);
    static ProjectExplorer::Kit* findMostRecentQulKit( );
};

} // namespace QmlProjectManager