summaryrefslogtreecommitdiffstats
path: root/Source/cmConfigureFileCommand.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-13 13:33:38 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-06-13 13:33:38 (GMT)
commitc9cc368a9db33273ad6287ea94fc285e90c4901f (patch)
tree623eb51c417be94e185d51672e65f46be10f1a02 /Source/cmConfigureFileCommand.h
parent4391edcdd4124a5e11eea64901dbe7aaa803b4e5 (diff)
downloadCMake-c9cc368a9db33273ad6287ea94fc285e90c4901f.zip
CMake-c9cc368a9db33273ad6287ea94fc285e90c4901f.tar.gz
CMake-c9cc368a9db33273ad6287ea94fc285e90c4901f.tar.bz2
ENH: made configure file immediate by default for 2.2 or later
Diffstat (limited to 'Source/cmConfigureFileCommand.h')
-rw-r--r--Source/cmConfigureFileCommand.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/cmConfigureFileCommand.h b/Source/cmConfigureFileCommand.h
index 2ae8040..f857c86 100644
--- a/Source/cmConfigureFileCommand.h
+++ b/Source/cmConfigureFileCommand.h
@@ -58,8 +58,7 @@ public:
{
return
" CONFIGURE_FILE(InputFile OutputFile\n"
- " [COPYONLY] [ESCAPE_QUOTES]\n"
- " [IMMEDIATE] [@ONLY])\n"
+ " [COPYONLY] [ESCAPE_QUOTES] [@ONLY])\n"
"The Input and Ouput files have to have full paths. "
"This command replaces any variables in the input file referenced as "
"${VAR} or @VAR@ with their values as determined by CMake. If a "
@@ -67,9 +66,8 @@ public:
"If COPYONLY is specified, then then no variable expansion will take "
"place. If ESCAPE_QUOTES is specified in then any substitued quotes "
"will be C-style escaped. "
- "If IMMEDIATE is specified, then the file will be configured with "
- "the current values of CMake variables instead of waiting until the "
- "end of CMakeLists processing. If @ONLY is specified, only variables "
+ "The file will be configured with the current values of CMake "
+ "variables. If @ONLY is specified, only variables "
"of the form @VAR@ will be replaces and ${VAR} will be ignored. "
"This is useful for configuring tcl scripts that use ${VAR}.";
}