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/cmInstallFilesCommand.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/cmInstallFilesCommand.h')
-rw-r--r-- | Source/cmInstallFilesCommand.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmInstallFilesCommand.h b/Source/cmInstallFilesCommand.h index 357f343..7885d18 100644 --- a/Source/cmInstallFilesCommand.h +++ b/Source/cmInstallFilesCommand.h @@ -45,14 +45,14 @@ public: /** * The name of the command as specified in CMakeList.txt. */ - virtual const char* GetName() { return "INSTALL_FILES";} + virtual const char* GetName() { return "install_files";} /** * Succinct documentation. */ virtual const char* GetTerseDocumentation() { - return "Deprecated. Use the INSTALL(FILES ) command instead."; + return "Deprecated. Use the install(FILES ) command instead."; } /** @@ -69,12 +69,12 @@ public: virtual const char* GetFullDocumentation() { return - "This command has been superceded by the INSTALL command. It " + "This command has been superceded by the install command. It " "is provided for compatibility with older CMake code. " "The FILES form is directly replaced by the FILES form of the " - "INSTALL command. The regexp form can be expressed " - "more clearly using the GLOB form of the FILE command.\n" - " INSTALL_FILES(<dir> extension file file ...)\n" + "install command. The regexp form can be expressed " + "more clearly using the GLOB form of the file command.\n" + " install_files(<dir> extension file file ...)\n" "Create rules to install the listed files with the given extension " "into the given directory. " "Only files existing in the current source tree or its corresponding " @@ -83,10 +83,10 @@ public: "removed first. This is useful for providing lists of source files " "such as foo.cxx when you want the corresponding foo.h to be " "installed. A typical extension is '.h'.\n" - " INSTALL_FILES(<dir> regexp)\n" + " install_files(<dir> regexp)\n" "Any files in the current source directory that match the regular " "expression will be installed.\n" - " INSTALL_FILES(<dir> FILES file file ...)\n" + " install_files(<dir> FILES file file ...)\n" "Any files listed after the FILES keyword will be " "installed explicitly from the names given. Full paths are allowed in " "this form.\n" |