cmNinjaNormalTargetGenerator: make sure comments match parameter names
This commit is contained in:
parent
7b94a7adb3
commit
3fab1fef23
|
@ -336,7 +336,7 @@ std::vector<std::string> cmNinjaNormalTargetGenerator::ComputeLinkCmd()
|
||||||
std::string targetOutputReal =
|
std::string targetOutputReal =
|
||||||
this->ConvertToNinjaPath(gt.GetFullPath(cfgName,
|
this->ConvertToNinjaPath(gt.GetFullPath(cfgName,
|
||||||
/*implib=*/false,
|
/*implib=*/false,
|
||||||
/*realpath=*/true));
|
/*realname=*/true));
|
||||||
cmakeCommand += targetOutputReal;
|
cmakeCommand += targetOutputReal;
|
||||||
cmakeCommand += " || true";
|
cmakeCommand += " || true";
|
||||||
linkCmds.push_back(cmakeCommand);
|
linkCmds.push_back(cmakeCommand);
|
||||||
|
@ -414,7 +414,7 @@ void cmNinjaNormalTargetGenerator::WriteLinkStatement()
|
||||||
std::string targetOutputReal =
|
std::string targetOutputReal =
|
||||||
ConvertToNinjaPath(gt.GetFullPath(cfgName,
|
ConvertToNinjaPath(gt.GetFullPath(cfgName,
|
||||||
/*implib=*/false,
|
/*implib=*/false,
|
||||||
/*realpath=*/true));
|
/*realname=*/true));
|
||||||
std::string targetOutputImplib =
|
std::string targetOutputImplib =
|
||||||
ConvertToNinjaPath(gt.GetFullPath(cfgName,
|
ConvertToNinjaPath(gt.GetFullPath(cfgName,
|
||||||
/*implib=*/true));
|
/*implib=*/true));
|
||||||
|
|
Loading…
Reference in New Issue