summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallCommand.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-11 19:50:11 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-05-11 19:50:11 (GMT)
commitba2b99bb9ff5e260f3129fdb4f87ae7e67a08301 (patch)
tree9813a8b1160fa7900b626b0092c01cdd1c306ebc /Source/cmInstallCommand.h
parent80f71359c1157ddaa59291b95d2c05ceb577ffde (diff)
downloadCMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.zip
CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.tar.gz
CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.tar.bz2
STYLE: fix line length
Diffstat (limited to 'Source/cmInstallCommand.h')
-rw-r--r--Source/cmInstallCommand.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/Source/cmInstallCommand.h b/Source/cmInstallCommand.h
index f325f06..508fc09 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"