ENH: Cleaned up documentation and formatted it for use by cmDocumentation.

This commit is contained in:
Brad King
2003-02-14 18:47:16 -05:00
parent dec0b51066
commit a02574158d
75 changed files with 612 additions and 365 deletions

View File

@@ -74,7 +74,7 @@ public:
*/
virtual const char* GetTerseDocumentation()
{
return "Enable testing for this directory and below.";
return "Enable testing for current directory and below.";
}
/**
@@ -83,8 +83,11 @@ public:
virtual const char* GetFullDocumentation()
{
return
"ENABLE_TESTING()\n"
"Enables testing for this directory and below. See also the ADD_TEST command. Note that Dart expects to find this file in the build directory root; therefore, this command should be in the source directory root too.";
" ENABLE_TESTING()\n"
"Enables testing for this directory and below. "
"See also the ADD_TEST command. Note that Dart expects to find "
"a test file in the build directory root. Therefore, this command "
"should be in the source directory root too.";
}
cmTypeMacro(cmEnableTestingCommand, cmCommand);