summaryrefslogtreecommitdiff
path: root/Source/cmWriteFileCommand.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-29 13:32:37 -0500
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-29 13:32:37 -0500
commit91bd2078123a417b74537652cffabab108ed15f3 (patch)
tree1a1784efc436b6f00ac65e8eab79977ba7d861f2 /Source/cmWriteFileCommand.h
parent74eeb49d4cd0962484ba5ed12c33edc33cec1d94 (diff)
downloadcmake-91bd2078123a417b74537652cffabab108ed15f3.tar.gz
Add flag to WRITE_FILE to append
Diffstat (limited to 'Source/cmWriteFileCommand.h')
-rw-r--r--Source/cmWriteFileCommand.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmWriteFileCommand.h b/Source/cmWriteFileCommand.h
index 59b7ce4160..5a07e3d20c 100644
--- a/Source/cmWriteFileCommand.h
+++ b/Source/cmWriteFileCommand.h
@@ -60,8 +60,10 @@ public:
virtual const char* GetFullDocumentation()
{
return
- "WRITE_FILE(filename \"message to write\"...)\n"
- "The first argument is the file name, the rest of the arguments are messages to write.";
+ "WRITE_FILE(filename \"message to write\"... [APPEND])\n"
+ "The first argument is the file name, the rest of the arguments are "
+ "messages to write. If the argument APPEND is specified, then "
+ "the message will be appended.";
}
cmTypeMacro(cmWriteFileCommand, cmCommand);