STYLE: fix docs

This commit is contained in:
Ken Martin 2005-11-16 10:22:58 -05:00
parent a043b6608c
commit 3395e137fa
1 changed files with 5 additions and 2 deletions

View File

@ -65,8 +65,11 @@ public:
virtual const char* GetFullDocumentation()
{
return
"CMAKE_MINIMUM_REQUIRED(VERSION versionNumber)\n"
"Let cmake know that the project requires a certain version of a cmake, or newer. CMake will also try to backwards compatible to the version of cmake specified, if a newer version of cmake is running.";
" CMAKE_MINIMUM_REQUIRED(VERSION versionNumber)\n"
"Let cmake know that the project requires a certain version of a "
"cmake, or newer. CMake will also try to be backwards compatible to "
"the version of cmake specified, if a newer version of cmake is "
"running.";
}
cmTypeMacro(cmCMakeMinimumRequired, cmCommand);