diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-30 12:47:03 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-30 12:47:03 (GMT) |
commit | 455b262cfeaedaa9f472e4f80160fd06d9331459 (patch) | |
tree | bfb329a39ac5fd2c51d7fdc896aab3704555ea0c /Source/cmAddExecutableCommand.h | |
parent | 1bf59ded665ebd20b2633a43abab4a89d34fff4f (diff) | |
download | CMake-455b262cfeaedaa9f472e4f80160fd06d9331459.zip CMake-455b262cfeaedaa9f472e4f80160fd06d9331459.tar.gz CMake-455b262cfeaedaa9f472e4f80160fd06d9331459.tar.bz2 |
ENH: clean up docs some
Diffstat (limited to 'Source/cmAddExecutableCommand.h')
-rw-r--r-- | Source/cmAddExecutableCommand.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/cmAddExecutableCommand.h b/Source/cmAddExecutableCommand.h index 92d03f2..07fc774 100644 --- a/Source/cmAddExecutableCommand.h +++ b/Source/cmAddExecutableCommand.h @@ -53,7 +53,7 @@ public: */ virtual const char* GetTerseDocumentation() { - return "Add an executable to the project that uses the specified srclists"; + return "Add an executable to the project that uses the specified source files."; } /** @@ -62,13 +62,12 @@ public: virtual const char* GetFullDocumentation() { return - "ADD_EXECUTABLE(exename srclist srclist srclist ...)\n" - "ADD_EXECUTABLE(exename WIN32 srclist srclist srclist ...)" + "ADD_EXECUTABLE(exename [WIN32] source1 source2 ... sourceN)\n" "This command adds an executable target to the current directory. " - "The executable will be built from the source files / source lists " + "The executable will be built from the list of source files " "specified. The second argument to this command can be WIN32 " "which indicates that the executable (when compiled on windows) " - "is a windows app (using WinMain)not a console app (using main)."; + "is a windows app (using WinMain) not a console app (using main)."; } cmTypeMacro(cmAddExecutableCommand, cmCommand); |