Przeglądaj źródła

Merge topic 'cmake-credits'

6fc4ab9 Credit Kitware and csimsoft for their maintenance roles
Brad King 12 lat temu
rodzic
commit
392932fb30

+ 8 - 4
Source/QtDialog/CMakeSetupDialog.cxx

@@ -807,10 +807,14 @@ void CMakeSetupDialog::doDeleteCache()
 
 void CMakeSetupDialog::doAbout()
 {
-  QString msg = tr("CMake %1\n"
-                "Using Qt %2\n"
-                "www.cmake.org");
-
+  QString msg = tr(
+    "CMake %1 (cmake.org).\n"
+    "CMake suite maintained by Kitware, Inc. (kitware.com).\n"
+    "Distributed under terms of the BSD 3-Clause License.\n"
+    "\n"
+    "CMake GUI maintained by csimsoft,\n"
+    "built using Qt %2 (qt-project.org).\n"
+    );
   msg = msg.arg(cmVersion::GetCMakeVersion());
   msg = msg.arg(qVersion());
 

+ 6 - 2
Source/cmDocumentation.cxx

@@ -95,8 +95,12 @@ cmDocumentation::~cmDocumentation()
 //----------------------------------------------------------------------------
 bool cmDocumentation::PrintVersion(std::ostream& os)
 {
-  os << this->GetNameString() << " version "
-     << cmVersion::GetCMakeVersion() << "\n";
+  os <<
+    this->GetNameString() <<
+    " version " << cmVersion::GetCMakeVersion() << "\n"
+    "\n"
+    "CMake suite maintained by Kitware, Inc. (kitware.com).\n"
+    ;
   return true;
 }