mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
ENH: make commands lower case by default
This commit is contained in:
@@ -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 "
|
||||
|
||||
Reference in New Issue
Block a user