aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.h
blob: f36003f9b6924616413eef4e6345808058748614 (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
// Copyright (C) 2016 Research In Motion
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "../buildstep.h"
#include "../projectexplorer_export.h"

namespace ProjectExplorer {

class PROJECTEXPLORER_EXPORT DeviceCheckBuildStep : public BuildStep
{
    Q_OBJECT

public:
    DeviceCheckBuildStep(BuildStepList *bsl, Utils::Id id);

    bool init() override;
    void doRun() override;

    static Utils::Id stepId();
    static QString displayName();
};

} // namespace ProjectExplorer