summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileExecutableTargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-02-07 00:07:24 (GMT)
committerBrad King <brad.king@kitware.com>2015-02-07 00:07:24 (GMT)
commit7bb50e4a31ad5a8a58fe60885014d431a887b27f (patch)
tree8b1ac8ada68cbb2aa0f89cd04f54e3313a4f5223 /Source/cmMakefileExecutableTargetGenerator.cxx
parentc6ada8275b680e02f50a7aee1c02b0b184cadf83 (diff)
downloadCMake-7bb50e4a31ad5a8a58fe60885014d431a887b27f.zip
CMake-7bb50e4a31ad5a8a58fe60885014d431a887b27f.tar.gz
CMake-7bb50e4a31ad5a8a58fe60885014d431a887b27f.tar.bz2
Makefile: Add progress to link step messages
Diffstat (limited to 'Source/cmMakefileExecutableTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileExecutableTargetGenerator.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmMakefileExecutableTargetGenerator.cxx b/Source/cmMakefileExecutableTargetGenerator.cxx
index d4036d2..ab58cbd 100644
--- a/Source/cmMakefileExecutableTargetGenerator.cxx
+++ b/Source/cmMakefileExecutableTargetGenerator.cxx
@@ -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.