diff options
author | Brad King <brad.king@kitware.com> | 2003-08-06 15:18:58 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-08-06 15:18:58 -0400 |
commit | ac0911e08b2c69a9cd9821f63d8f59402c115edf (patch) | |
tree | 9ff2fbeb7334cfe2da6d80f57d0997ed3374706d /Source/cmAddCustomCommandCommand.h | |
parent | d4854628ab2e630caffd3f3e3a4f31e8f64212a4 (diff) | |
download | cmake-ac0911e08b2c69a9cd9821f63d8f59402c115edf.tar.gz |
ENH: Tweaked whitespace in documentation of command.
Diffstat (limited to 'Source/cmAddCustomCommandCommand.h')
-rw-r--r-- | Source/cmAddCustomCommandCommand.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/Source/cmAddCustomCommandCommand.h b/Source/cmAddCustomCommandCommand.h index f10b00bba2..3b83d0671e 100644 --- a/Source/cmAddCustomCommandCommand.h +++ b/Source/cmAddCustomCommandCommand.h @@ -76,15 +76,13 @@ public: "This defines a new command that can be executed during the build " "process. Note that MAIN_DEPENDENCY is completely optional and is " "used as a suggestion to visual studio about where to hang the " - "custom command In makefile terms this creates a new target in the " + "custom command. In makefile terms this creates a new target in the " "following form:\n" " OUTPUT: MAIN_DEPENDENCY DEPENDS\n" " COMMAND ARGS\n" - "\n" "The second signature adds a custom command to a target " "such as a library or executable. This is useful for " - "performing an operation before or after building the target " - "\n" + "performing an operation before or after building the target:\n" " ADD_CUSTOM_COMMAND(TARGET target\n" " PRE_BUILD | PRE_LINK | POST_BUILD\n" " COMMAND command\n" @@ -92,10 +90,10 @@ public: " [COMMENT comment])\n" "This defines a new command that will be associated with " "building the specified target. When the command will " - "happen is determined by whether you specify\n" - "PRE_BUILD - run before all other dependencies\n" - "PRE_LINK - run after other dependencies\n" - "POST_BUILD - run after the target has been built\n"; + "happen is determined by which of the following is specified:\n" + " PRE_BUILD - run before all other dependencies\n" + " PRE_LINK - run after other dependencies\n" + " POST_BUILD - run after the target has been built"; } cmTypeMacro(cmAddCustomCommandCommand, cmCommand); |