瀏覽代碼

ENH: add a message at the end of the cmake run telling the user where things were written.

Bill Hoffman 21 年之前
父節點
當前提交
997ee7b8d6
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      Source/cmake.cxx

+ 3 - 0
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;