diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-05-15 17:02:28 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-05-15 17:02:28 (GMT) |
commit | fd8e45d4a1c4f6b6dbd5edb99d77244f6cf836ff (patch) | |
tree | 930ed09668896b9989e4f341deaca24bc5de1685 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 000bce884dacc774ef50a76714bc1e7d2687a90a (diff) | |
download | CMake-fd8e45d4a1c4f6b6dbd5edb99d77244f6cf836ff.zip CMake-fd8e45d4a1c4f6b6dbd5edb99d77244f6cf836ff.tar.gz CMake-fd8e45d4a1c4f6b6dbd5edb99d77244f6cf836ff.tar.bz2 |
ENH: Add simple progress reporting during make
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 66a69b5..a69ae73 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -886,6 +886,8 @@ cmLocalUnixMakefileGenerator3::AppendEcho(std::vector<std::string>& commands, break; } } +#else + (void)color; #endif // Echo one line at a time. @@ -1411,6 +1413,8 @@ void cmLocalUnixMakefileGenerator3 this->CreateCDCommand(commands, this->Makefile->GetHomeOutputDirectory(), this->Makefile->GetStartOutputDirectory()); + std::string echoCommand = "@echo \"\""; + commands.push_back(echoCommand.c_str()); this->WriteMakeRule(ruleFileStream, "The main all target", "all", depends, commands, true); |