mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
Makefile: Add progress to link step messages
This commit is contained in:
@@ -171,15 +171,19 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink)
|
||||
return;
|
||||
}
|
||||
|
||||
this->NumberOfProgressActions++;
|
||||
if(!this->NoRuleMessages)
|
||||
{
|
||||
cmLocalUnixMakefileGenerator3::EchoProgress progress;
|
||||
this->MakeEchoProgress(progress);
|
||||
// Add the link message.
|
||||
std::string buildEcho = "Linking ";
|
||||
buildEcho += linkLanguage;
|
||||
buildEcho += " executable ";
|
||||
buildEcho += targetOutPath;
|
||||
this->LocalGenerator->AppendEcho(commands, buildEcho.c_str(),
|
||||
cmLocalUnixMakefileGenerator3::EchoLink);
|
||||
cmLocalUnixMakefileGenerator3::EchoLink,
|
||||
&progress);
|
||||
}
|
||||
|
||||
// Build a list of compiler flags and linker flags.
|
||||
|
||||
Reference in New Issue
Block a user