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/cmAddCustomTargetCommand.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/cmAddCustomTargetCommand.h')
-rw-r--r-- | Source/cmAddCustomTargetCommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmAddCustomTargetCommand.h b/Source/cmAddCustomTargetCommand.h index b8808b8..f9da054 100644 --- a/Source/cmAddCustomTargetCommand.h +++ b/Source/cmAddCustomTargetCommand.h @@ -47,7 +47,7 @@ public: * The name of the command as specified in CMakeList.txt. */ virtual const char* GetName() - {return "ADD_CUSTOM_TARGET";} + {return "add_custom_target";} /** * Succinct documentation. @@ -63,7 +63,7 @@ public: virtual const char* GetFullDocumentation() { return - " ADD_CUSTOM_TARGET(Name [ALL] [command1 [args1...]]\n" + " add_custom_target(Name [ALL] [command1 [args1...]]\n" " [COMMAND command2 [args2...] ...]\n" " [DEPENDS depend depend depend ... ]\n" " [WORKING_DIRECTORY dir]\n" @@ -89,7 +89,7 @@ public: "If VERBATIM is given then all the arguments to the commands will be " "passed exactly as specified no matter the build tool used. " "Note that one level of escapes is still used by the CMake language " - "processor before ADD_CUSTOM_TARGET even sees the arguments. " + "processor before add_custom_target even sees the arguments. " "Use of VERBATIM is recommended as it enables correct behavior. " "When VERBATIM is not given the behavior is platform specific. " "In the future VERBATIM may be enabled by default. The only reason " |