diff options
Diffstat (limited to 'Source/cmInstallCommand.h')
-rw-r--r-- | Source/cmInstallCommand.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/cmInstallCommand.h b/Source/cmInstallCommand.h index 0f5eb16..ed3a3a2 100644 --- a/Source/cmInstallCommand.h +++ b/Source/cmInstallCommand.h @@ -99,7 +99,7 @@ public: "\n" "The TARGETS signature:\n" " install(TARGETS targets... [EXPORT <export-name>]\n" - " [[ARCHIVE|LIBRARY|RUNTIME]\n" + " [[ARCHIVE|LIBRARY|RUNTIME|FRAMEWORK]\n" " [DESTINATION <dir>]\n" " [PERMISSIONS permissions...]\n" " [CONFIGURATIONS [Debug|Release|...]]\n" @@ -107,19 +107,20 @@ public: " [OPTIONAL]\n" " ] [...])\n" "The TARGETS form specifies rules for installing targets from a " - "project. There are three kinds of target files that may be " - "installed: archive, library, and runtime. " + "project. There are four kinds of target files that may be " + "installed: archive, library, runtime, and framework. " "Executables are always treated as runtime targets. " "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. " + "targets, except that those marked with the FRAMEWORK property " + "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. " "All Windows-based systems including Cygwin are DLL platforms. " - "The ARCHIVE, LIBRARY, and RUNTIME " + "The ARCHIVE, LIBRARY, RUNTIME, and FRAMEWORK " "arguments change the type of target to which the subsequent " "properties " "apply. If none is given the installation properties apply to " |