aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/boot2qt/qdbdeployconfigurationfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/boot2qt/qdbdeployconfigurationfactory.cpp')
-rw-r--r--src/plugins/boot2qt/qdbdeployconfigurationfactory.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/plugins/boot2qt/qdbdeployconfigurationfactory.cpp b/src/plugins/boot2qt/qdbdeployconfigurationfactory.cpp
index 7e973d86e1..a8b86a87ff 100644
--- a/src/plugins/boot2qt/qdbdeployconfigurationfactory.cpp
+++ b/src/plugins/boot2qt/qdbdeployconfigurationfactory.cpp
@@ -26,20 +26,15 @@
#include "qdbdeployconfigurationfactory.h"
#include "qdbconstants.h"
-#include "qdbstopapplicationstep.h"
#include <projectexplorer/deploymentdataview.h>
#include <projectexplorer/kitinformation.h>
#include <projectexplorer/project.h>
#include <projectexplorer/target.h>
-#include <remotelinux/genericdirectuploadstep.h>
-#include <remotelinux/makeinstallstep.h>
-#include <remotelinux/remotelinuxcheckforfreediskspacestep.h>
-#include <remotelinux/remotelinuxdeployconfiguration.h>
+#include <remotelinux/remotelinux_constants.h>
using namespace ProjectExplorer;
-using namespace RemoteLinux;
namespace Qdb {
namespace Internal {
@@ -52,14 +47,14 @@ QdbDeployConfigurationFactory::QdbDeployConfigurationFactory()
"Deploy to Boot2Qt target"));
setUseDeploymentDataView();
- addInitialStep(RemoteLinux::MakeInstallStep::stepId(), [](Target *target) {
+ addInitialStep(RemoteLinux::Constants::MakeInstallStepId, [](Target *target) {
const Project * const prj = target->project();
return prj->deploymentKnowledge() == DeploymentKnowledge::Bad
&& prj->hasMakeInstallEquivalent();
});
- addInitialStep(RemoteLinuxCheckForFreeDiskSpaceStep::stepId());
- addInitialStep(QdbStopApplicationStep::stepId());
- addInitialStep(GenericDirectUploadStep::stepId());
+ addInitialStep(RemoteLinux::Constants::CheckForFreeDiskSpaceId);
+ addInitialStep(Qdb::Constants::QdbStopApplicationStepId);
+ addInitialStep(RemoteLinux::Constants::DirectUploadStepId);
}
} // namespace Internal