diff options
author | Brad King <brad.king@kitware.com> | 2008-04-14 22:03:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-04-14 22:03:15 (GMT) |
commit | 202e759bbfea4d437132ea4f25f7dbf2440a7c3a (patch) | |
tree | 5ee0b5a8e20713ed1a692824827c5f559a84a52d /Source/cmInstallCommand.h | |
parent | 067717a56a55d5a35c223170e5bad0427d0d63f3 (diff) | |
download | CMake-202e759bbfea4d437132ea4f25f7dbf2440a7c3a.zip CMake-202e759bbfea4d437132ea4f25f7dbf2440a7c3a.tar.gz CMake-202e759bbfea4d437132ea4f25f7dbf2440a7c3a.tar.bz2 |
ENH: Clarify documentation of install(TARGETS) command to refer to install target types by the upper-case keywords used when invoking the command.
Diffstat (limited to 'Source/cmInstallCommand.h')
-rw-r--r-- | Source/cmInstallCommand.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/cmInstallCommand.h b/Source/cmInstallCommand.h index 0b7c95f..0b7ae7a 100644 --- a/Source/cmInstallCommand.h +++ b/Source/cmInstallCommand.h @@ -109,19 +109,19 @@ public: " ] [...])\n" "The TARGETS form specifies rules for installing targets from a " "project. There are five kinds of target files that may be " - "installed: archive, library, runtime, framework, and bundle. " + "installed: ARCHIVE, LIBRARY, RUNTIME, FRAMEWORK, and BUNDLE. " - "Executables are treated as runtime targets, except that those " - "marked with the MACOSX_BUNDLE property are treated as bundle " + "Executables are treated as RUNTIME targets, except that those " + "marked with the MACOSX_BUNDLE property are treated as BUNDLE " "targets on OS X. " - "Static libraries are always treated as archive targets. " - "Module libraries are always treated as library targets. " - "For non-DLL platforms shared libraries are treated as library " + "Static libraries are always treated as ARCHIVE targets. " + "Module libraries are always treated as LIBRARY targets. " + "For non-DLL platforms shared libraries are treated as LIBRARY " "targets, except that those marked with the FRAMEWORK property " - "are treated as framework targets on OS X. " + "are treated as FRAMEWORK targets on OS X. " "For DLL platforms the DLL part of a shared library is treated as " - "a runtime target and the corresponding import library is treated as " - "an archive target. " + "a RUNTIME target and the corresponding import library is treated as " + "an ARCHIVE target. " "All Windows-based systems including Cygwin are DLL platforms. " "The ARCHIVE, LIBRARY, RUNTIME, and FRAMEWORK " "arguments change the type of target to which the subsequent " |