Nim/Qbs: Append clean steps by id to build configuration

Change-Id: Icd775c771939c72aea1f9fd73bbbd9f8481703eb
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2019-08-01 16:07:50 +02:00
parent 4c80380478
commit b0a00869db
2 changed files with 2 additions and 3 deletions

View File

@@ -124,7 +124,7 @@ void QbsBuildConfiguration::initialize(const BuildInfo &info)
buildSteps->appendStep(bs);
BuildStepList *cleanSteps = stepList(ProjectExplorer::Constants::BUILDSTEPS_CLEAN);
cleanSteps->appendStep(new QbsCleanStep(cleanSteps));
cleanSteps->appendStep(Constants::QBS_CLEANSTEP_ID);
emit qbsConfigurationChanged();
}