diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-10 11:47:43 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-10 11:47:43 -0400 |
commit | 8d32d229a3b77f7cb0dd708c6a492fa33797b9f0 (patch) | |
tree | 616c727c9b0609549374c223079b367172bffeff /Source/cmSourceGroupCommand.h | |
parent | 8e4c7b99e1b73c641308c0177673dac33fe57df1 (diff) | |
download | cmake-8d32d229a3b77f7cb0dd708c6a492fa33797b9f0.tar.gz |
ENH: make commands lower case by default
Diffstat (limited to 'Source/cmSourceGroupCommand.h')
-rw-r--r-- | Source/cmSourceGroupCommand.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmSourceGroupCommand.h b/Source/cmSourceGroupCommand.h index 0b95605e46..5d56bf7b72 100644 --- a/Source/cmSourceGroupCommand.h +++ b/Source/cmSourceGroupCommand.h @@ -45,7 +45,7 @@ public: /** * The name of the command as specified in CMakeList.txt. */ - virtual const char* GetName() {return "SOURCE_GROUP";} + virtual const char* GetName() {return "source_group";} /** * Succinct documentation. @@ -61,7 +61,7 @@ public: virtual const char* GetFullDocumentation() { return - " SOURCE_GROUP(name [REGULAR_EXPRESSION regex] " + " source_group(name [REGULAR_EXPRESSION regex] " "[FILES src1 src2 ...])\n" "Defines a group into which sources will be placed in project files. " "This is mainly used to setup file tabs in Visual Studio. " @@ -71,10 +71,10 @@ public: "group explicitly lists the file, the LAST group whose regular " "expression matches the file will be favored.\n" "The name of the group may contain backslashes to specify subgroups:\n" - " SOURCE_GROUP(outer\\\\inner ...)\n" + " source_group(outer\\\\inner ...)\n" "For backwards compatibility, this command is also supports the " "format:\n" - " SOURCE_GROUP(name regex)"; + " source_group(name regex)"; } cmTypeMacro(cmSourceGroupCommand, cmCommand); |