mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 23:28:32 -05:00
Ninja: Replace array access with local variable
This commit is contained in:
@@ -488,13 +488,13 @@ std::string cmLocalNinjaGenerator::MakeCustomLauncher(
|
|||||||
std::string output;
|
std::string output;
|
||||||
const std::vector<std::string>& outputs = ccg.GetOutputs();
|
const std::vector<std::string>& outputs = ccg.GetOutputs();
|
||||||
if (!outputs.empty()) {
|
if (!outputs.empty()) {
|
||||||
|
output = outputs[0];
|
||||||
if (ccg.GetWorkingDirectory().empty()) {
|
if (ccg.GetWorkingDirectory().empty()) {
|
||||||
output = this->ConvertToRelativePath(this->GetCurrentBinaryDirectory(),
|
output =
|
||||||
outputs[0]);
|
this->ConvertToRelativePath(this->GetCurrentBinaryDirectory(), output);
|
||||||
output = this->ConvertToOutputFormat(output, cmOutputConverter::SHELL);
|
output = this->ConvertToOutputFormat(output, cmOutputConverter::SHELL);
|
||||||
} else {
|
} else {
|
||||||
output =
|
output = this->ConvertToOutputFormat(output, cmOutputConverter::SHELL);
|
||||||
this->ConvertToOutputFormat(outputs[0], cmOutputConverter::SHELL);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
vars.Output = output.c_str();
|
vars.Output = output.c_str();
|
||||||
|
|||||||
Reference in New Issue
Block a user