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/cmAddCustomCommandCommand.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/cmAddCustomCommandCommand.h')
-rw-r--r-- | Source/cmAddCustomCommandCommand.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/Source/cmAddCustomCommandCommand.h b/Source/cmAddCustomCommandCommand.h index e2afc23..b158ca3 100644 --- a/Source/cmAddCustomCommandCommand.h +++ b/Source/cmAddCustomCommandCommand.h @@ -88,7 +88,22 @@ public: return "ADD_CUSTOM_COMMAND([SOURCE source] [COMMAND command] TARGET target " "[ARGS [args...]] [DEPENDS [depends...]] [OUTPUTS [outputs...]] [COMMENT comment])\n" - "Add a custom command."; + "This defines a new command that can be executed during the build " + "process. In makefile terms this creates a new target in the following form:<pre><code>\n" + "OUTPUT1: SOURCE DEPENDS\n" + " COMAND ARGS\n" + "OUTPUT2: SOURCE DEPENDS\n" + " COMAND ARGS\n" + " Example of usage:\n" + " ADD_CUSTOM_COMMAND(\n" + " SOURCE ${VTK_TIFF_FAX_EXE} \n" + " COMMAND ${VTK_TIFF_FAX_EXE} \n" + " ARGS -c const ${VTK_BINARY_DIR}/Utilities/tiff/tif_fax3sm.c \n" + " TARGET vtktiff \n" + " OUTPUTS ${VTK_BINARY_DIR}/Utilities/tiff/tif_fax3sm.c\n" + " )\n" + "This will create custom target which will generate file tif_fax3sm.c\n" + "using command ${VTK_TIFF_FAX_EXE}.</pre></code>"; } cmTypeMacro(cmAddCustomCommandCommand, cmCommand); |