diff options
author | Brad King <brad.king@kitware.com> | 2003-02-14 23:47:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-02-14 23:47:16 (GMT) |
commit | a02574158d178615cf8fd642695e5099b6041049 (patch) | |
tree | df9f52770e9c2ff771988ae1a91ec0b2287548da /Source/cmAddExecutableCommand.h | |
parent | dec0b5106611cbccd1f75c1fa3371d66bdd69a47 (diff) | |
download | CMake-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/cmAddExecutableCommand.h')
-rw-r--r-- | Source/cmAddExecutableCommand.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmAddExecutableCommand.h b/Source/cmAddExecutableCommand.h index 07fc774..8844e92 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 source files."; + return "Add an executable to the project using the specified source files."; } /** @@ -62,10 +62,11 @@ public: virtual const char* GetFullDocumentation() { return - "ADD_EXECUTABLE(exename [WIN32] source1 source2 ... sourceN)\n" - "This command adds an executable target to the current directory. " + " ADD_EXECUTABLE(exename [WIN32] source1\n" + " source2 ... sourceN)\n" + "This command adds an executable target to the current directory. " "The executable will be built from the list of source files " - "specified. The second argument to this command can be WIN32 " + "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)."; } |