2022-08-19 15:59:36 +02:00
|
|
|
// 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
|
2018-12-14 15:41:59 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "remotelinux_export.h"
|
|
|
|
|
|
2022-05-27 15:41:57 +02:00
|
|
|
#include "abstractremotelinuxdeploystep.h"
|
|
|
|
|
|
2018-12-14 15:41:59 +01:00
|
|
|
namespace RemoteLinux {
|
|
|
|
|
|
|
|
|
|
class REMOTELINUX_EXPORT RsyncDeployStep : public AbstractRemoteLinuxDeployStep
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2020-06-26 13:59:38 +02:00
|
|
|
RsyncDeployStep(ProjectExplorer::BuildStepList *bsl, Utils::Id id);
|
2018-12-14 15:41:59 +01:00
|
|
|
~RsyncDeployStep() override;
|
|
|
|
|
|
2020-06-26 13:59:38 +02:00
|
|
|
static Utils::Id stepId();
|
2018-12-14 15:41:59 +01:00
|
|
|
static QString displayName();
|
|
|
|
|
};
|
|
|
|
|
|
2022-07-15 12:20:23 +02:00
|
|
|
} // RemoteLinux
|