More FileName::appendPath() -> .pathAppended() changes

Change-Id: Ibc7eb4eb3ffb64658e441aafa240b1ddc0061930
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
hjk
2019-05-20 17:13:51 +02:00
parent 061896a148
commit dc9cbd8f57
9 changed files with 19 additions and 29 deletions

View File

@@ -217,8 +217,7 @@ void NimCompilerBuildStep::updateOutFilePath()
auto bc = qobject_cast<NimBuildConfiguration *>(buildConfiguration());
QTC_ASSERT(bc, return);
const QString targetName = Utils::HostOsInfo::withExecutableSuffix(m_targetNimFile.toFileInfo().baseName());
FileName outFilePath = bc->buildDirectory().appendPath(targetName);
setOutFilePath(outFilePath);
setOutFilePath(bc->buildDirectory().pathAppended(targetName));
}
void NimCompilerBuildStep::updateCommand()