ENH: make commands lower case by default

This commit is contained in:
Ken Martin
2007-10-10 11:47:43 -04:00
parent 8e4c7b99e1
commit 8d32d229a3
95 changed files with 345 additions and 346 deletions

View File

@@ -48,7 +48,7 @@ public:
/**
* The name of the command as specified in CMakeList.txt.
*/
virtual const char* GetName() { return "UTILITY_SOURCE";}
virtual const char* GetName() { return "utility_source";}
/**
* Succinct documentation.
@@ -64,14 +64,14 @@ public:
virtual const char* GetFullDocumentation()
{
return
" UTILITY_SOURCE(cache_entry executable_name\n"
" utility_source(cache_entry executable_name\n"
" path_to_source [file1 file2 ...])\n"
"When a third-party utility's source is included in the distribution, "
"this command specifies its location and name. The cache entry will "
"not be set unless the path_to_source and all listed files exist. It "
"is assumed that the source tree of the utility will have been built "
"before it is needed.\n"
"When cross compiling CMake will print a warning if a UTILITY_SOURCE() "
"When cross compiling CMake will print a warning if a utility_source() "
"command is executed, because in many cases it is used to build an "
"executable which is executed later on. This doesn't work when "
"cross compiling, since the executable can run only on their target "