diff options
author | Brad King <brad.king@kitware.com> | 2013-11-19 21:27:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-11-19 23:12:58 (GMT) |
commit | 6fc4ab9b28054a0d2f6c5fc63ddd860eeed1ac64 (patch) | |
tree | 02f041f2339fdadc00f29d4e462dfc1faf9a1273 /Source/cmDocumentation.cxx | |
parent | e776a2dae4fe7dd6d20f15ec488019b95a9d648f (diff) | |
download | CMake-6fc4ab9b28054a0d2f6c5fc63ddd860eeed1ac64.zip CMake-6fc4ab9b28054a0d2f6c5fc63ddd860eeed1ac64.tar.gz CMake-6fc4ab9b28054a0d2f6c5fc63ddd860eeed1ac64.tar.bz2 |
Credit Kitware and csimsoft for their maintenance roles
Add maintenance credit to command-line "--version" output and the
cmake-gui "About" dialog.
Diffstat (limited to 'Source/cmDocumentation.cxx')
-rw-r--r-- | Source/cmDocumentation.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx index 8029577..0f9f752 100644 --- a/Source/cmDocumentation.cxx +++ b/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; } |