summaryrefslogtreecommitdiffstats
path: root/Source/cmAddLibraryCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-02-14 23:47:16 (GMT)
committerBrad King <brad.king@kitware.com>2003-02-14 23:47:16 (GMT)
commita02574158d178615cf8fd642695e5099b6041049 (patch)
treedf9f52770e9c2ff771988ae1a91ec0b2287548da /Source/cmAddLibraryCommand.h
parentdec0b5106611cbccd1f75c1fa3371d66bdd69a47 (diff)
downloadCMake-a02574158d178615cf8fd642695e5099b6041049.zip
CMake-a02574158d178615cf8fd642695e5099b6041049.tar.gz
CMake-a02574158d178615cf8fd642695e5099b6041049.tar.bz2
ENH: Cleaned up documentation and formatted it for use by cmDocumentation.
Diffstat (limited to 'Source/cmAddLibraryCommand.h')
-rw-r--r--Source/cmAddLibraryCommand.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/Source/cmAddLibraryCommand.h b/Source/cmAddLibraryCommand.h
index 19c929e..e493526 100644
--- a/Source/cmAddLibraryCommand.h
+++ b/Source/cmAddLibraryCommand.h
@@ -53,7 +53,7 @@ public:
*/
virtual const char* GetTerseDocumentation()
{
- return "Add an library to the project that uses the specified source files.";
+ return "Add an library to the project using the specified source files.";
}
/**
@@ -62,13 +62,15 @@ public:
virtual const char* GetFullDocumentation()
{
return
- "ADD_LIBRARY(libname [SHARED | STATIC | MODULE] source1 source2 ... sourceN)\n"
- "Adds a library target. SHARED, STATIC or MODULE keywords are used\n"
- "to set the library type. If the keywork MODULE appears, the library\n"
- "type is set to MH_BUNDLE on systems which use dyld. Systems without\n"
- "dyld MODULE is treated like SHARED. If no keywords appear as the second\n"
- "argument, the type defaults to the current value of BUILD_SHARED_LIBS.\n"
- "If this variable is not set, the type defaults to STATIC.";
+ " ADD_LIBRARY(libname [SHARED | STATIC | MODULE]\n"
+ " source1 source2 ... sourceN)\n"
+ "Adds a library target. SHARED, STATIC or MODULE keywords are used "
+ "to set the library type. If the keyword MODULE appears, the library "
+ "type is set to MH_BUNDLE on systems which use dyld. On systems "
+ "without dyld, MODULE is treated like SHARED. If no keywords appear "
+ " as the second argument, the type defaults to the current value of "
+ "BUILD_SHARED_LIBS. If this variable is not set, the type defaults "
+ "to STATIC.";
}
cmTypeMacro(cmAddLibraryCommand, cmCommand);