diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-02-01 21:39:15 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-02-01 21:39:15 (GMT) |
commit | 125b6c10f4f418642064763a6115033af919bbad (patch) | |
tree | b991e260df4747039f196ced22645c737e0c5d7f | |
parent | f432cc54cf63596b4c8c50da61560b19eb3e8b2a (diff) | |
download | CMake-125b6c10f4f418642064763a6115033af919bbad.zip CMake-125b6c10f4f418642064763a6115033af919bbad.tar.gz CMake-125b6c10f4f418642064763a6115033af919bbad.tar.bz2 |
ENH: fix doc line
-rw-r--r-- | Source/cmAddLibraryCommand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmAddLibraryCommand.h b/Source/cmAddLibraryCommand.h index a101692..19c929e 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 srclists"; + return "Add an library to the project that uses the specified source files."; } /** @@ -62,7 +62,7 @@ public: virtual const char* GetFullDocumentation() { return - "ADD_LIBRARY(libname [SHARED | STATIC | MODULE] srclist srclist ...)\n" + "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" |