CMakeBuildStep: Adapt variable name after moving functionality

Adapt the variable name after moving the functionality from the
BuildConfiguration to the BuildSystem.

Change-Id: I16006066841222ddd3607198413e2b55e6270c89
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Tobias Hunger
2020-02-24 10:47:43 +01:00
parent 0dcd380865
commit f8e6638069

View File

@@ -372,8 +372,8 @@ Utils::CommandLine CMakeBuildStep::cmakeCommand(RunConfiguration *rc) const
QStringList CMakeBuildStep::knownBuildTargets()
{
auto bc = qobject_cast<CMakeBuildSystem *>(buildSystem());
return bc ? bc->buildTargetTitles() : QStringList();
auto bs = qobject_cast<CMakeBuildSystem *>(buildSystem());
return bs ? bs->buildTargetTitles() : QStringList();
}
QString CMakeBuildStep::cleanTarget()