diff options
author | Brad King <brad.king@kitware.com> | 2003-02-14 23:47:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-02-14 23:47:16 (GMT) |
commit | a02574158d178615cf8fd642695e5099b6041049 (patch) | |
tree | df9f52770e9c2ff771988ae1a91ec0b2287548da /Source/cmEnableTestingCommand.h | |
parent | dec0b5106611cbccd1f75c1fa3371d66bdd69a47 (diff) | |
download | CMake-a02574158d178615cf8fd642695e5099b6041049.zip CMake-a02574158d178615cf8fd642695e5099b6041049.tar.gz CMake-a02574158d178615cf8fd642695e5099b6041049.tar.bz2 |
ENH: Cleaned up documentation and formatted it for use by cmDocumentation.
Diffstat (limited to 'Source/cmEnableTestingCommand.h')
-rw-r--r-- | Source/cmEnableTestingCommand.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmEnableTestingCommand.h b/Source/cmEnableTestingCommand.h index 9d6b695..fc37ee0 100644 --- a/Source/cmEnableTestingCommand.h +++ b/Source/cmEnableTestingCommand.h @@ -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); |