From 997ee7b8d624504dc22b8f158409ed53efad5bf7 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 16 Jul 2004 16:02:40 -0400 Subject: ENH: add a message at the end of the cmake run telling the user where things were written. --- Source/cmake.cxx | 3 +++ 1 file changed, 3 insertions(+) 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& 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; -- cgit v0.12