diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-10 15:47:43 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-10 15:47:43 (GMT) |
commit | 8d32d229a3b77f7cb0dd708c6a492fa33797b9f0 (patch) | |
tree | 616c727c9b0609549374c223079b367172bffeff /Source/cmUtilitySourceCommand.h | |
parent | 8e4c7b99e1b73c641308c0177673dac33fe57df1 (diff) | |
download | CMake-8d32d229a3b77f7cb0dd708c6a492fa33797b9f0.zip CMake-8d32d229a3b77f7cb0dd708c6a492fa33797b9f0.tar.gz CMake-8d32d229a3b77f7cb0dd708c6a492fa33797b9f0.tar.bz2 |
ENH: make commands lower case by default
Diffstat (limited to 'Source/cmUtilitySourceCommand.h')
-rw-r--r-- | Source/cmUtilitySourceCommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmUtilitySourceCommand.h b/Source/cmUtilitySourceCommand.h index 6364d67..4fd0474 100644 --- a/Source/cmUtilitySourceCommand.h +++ b/Source/cmUtilitySourceCommand.h @@ -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 " |