diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-11 15:50:11 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-11 15:50:11 -0400 |
commit | ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301 (patch) | |
tree | 9813a8b1160fa7900b626b0092c01cdd1c306ebc /Source/cmInstallCommand.h | |
parent | 80f71359c1157ddaa59291b95d2c05ceb577ffde (diff) | |
download | cmake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.tar.gz |
STYLE: fix line length
Diffstat (limited to 'Source/cmInstallCommand.h')
-rw-r--r-- | Source/cmInstallCommand.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Source/cmInstallCommand.h b/Source/cmInstallCommand.h index f325f062b2..508fc093a7 100644 --- a/Source/cmInstallCommand.h +++ b/Source/cmInstallCommand.h @@ -108,13 +108,15 @@ public: "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. " + "For non-DLL platforms shared libraries are treated as library " + "targets. " "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 " - "arguments change the type of target to which the subsequent properties " + "arguments change the type of target to which the subsequent " + "properties " "apply. If none is given the installation properties apply to " "all target types. If only one is given then only targets of that " "type will be installed (which can be used to install just a DLL or " @@ -131,12 +133,12 @@ public: " INSTALL(TARGETS mySharedLib DESTINATION /some/full/path)\n" "will install myExe to <prefix>/bin and myStaticLib to " "<prefix>/lib/static. " - "On non-DLL platforms mySharedLib will be installed to <prefix>/lib and " - "/some/full/path. On DLL platforms the mySharedLib DLL will be " + "On non-DLL platforms mySharedLib will be installed to <prefix>/lib " + "and /some/full/path. On DLL platforms the mySharedLib DLL will be " "installed to <prefix>/bin and /some/full/path and its import library " "will be installed to <prefix>/lib/static and /some/full/path. " - "On non-DLL platforms mySharedLib will be installed to <prefix>/lib and " - "/some/full/path." + "On non-DLL platforms mySharedLib will be installed to <prefix>/lib " + "and /some/full/path." "\n" "The FILES signature:\n" " INSTALL(FILES files... DESTINATION <dir>\n" @@ -169,7 +171,7 @@ public: "installation. If the script file name is a relative path " "it will be interpreted with respect to the current source directory. " "The CODE form will invoke the given CMake code during installation. " - "Code is specified as a single argument inside a double-quoted string. " + "Code is specified as a single argument inside a double-quoted string. " "For example, the code\n" " INSTALL(CODE \"MESSAGE(\\\"Sample install message.\\\")\")\n" "will print a message during installation.\n" |