RemoteLinux: Further disantangle buildsteps from downstream

Expose Factories, (mid term:) hide step implementations.

Change-Id: I930899fe6873c8f727f3dedbb86aceb9bcbda0a4
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
hjk
2023-03-24 17:45:44 +01:00
parent 7e4c52959c
commit 62b1795fb0
7 changed files with 54 additions and 14 deletions

View File

@@ -137,4 +137,12 @@ QString RsyncDeployStep::displayName()
return Tr::tr("Deploy files via rsync");
}
// Factory
RsyncDeployStepFactory::RsyncDeployStepFactory()
{
registerStep<RsyncDeployStep>(Constants::RsyncDeployStepId);
setDisplayName(Tr::tr("Deploy files via rsync"));
}
} // RemoteLinux