summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-07-16 20:02:40 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-07-16 20:02:40 (GMT)
commit997ee7b8d624504dc22b8f158409ed53efad5bf7 (patch)
treea819b03ead5eb7aada2b0e5dfa1128c8a802a6e5 /Source/cmake.cxx
parentff7757e34c462ec8e6749e88cde043c1ebe45bfa (diff)
downloadCMake-997ee7b8d624504dc22b8f158409ed53efad5bf7.zip
CMake-997ee7b8d624504dc22b8f158409ed53efad5bf7.tar.gz
CMake-997ee7b8d624504dc22b8f158409ed53efad5bf7.tar.bz2
ENH: add a message at the end of the cmake run telling the user where things were written.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index e13c872..a90356c 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -1213,6 +1213,9 @@ int cmake::Run(const std::vector<std::string>& args, bool noconfigure)
return ret;
}
ret = this->Generate();
+ std::string message = "Build files have been written to: ";
+ message += this->GetHomeOutputDirectory();
+ this->UpdateProgress(message.c_str(), -1);
if(ret)
{
return ret;