summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-20 17:14:47 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-20 17:14:47 (GMT)
commit92714311c992a924a249bf9f27820f0512af7013 (patch)
treea228304f99ee151845d7d3db4fe9cf2857535a65 /Source/cmCommands.cxx
parente5a8887426da6314855beca296c532119e8d3935 (diff)
downloadCMake-92714311c992a924a249bf9f27820f0512af7013.zip
CMake-92714311c992a924a249bf9f27820f0512af7013.tar.gz
CMake-92714311c992a924a249bf9f27820f0512af7013.tar.bz2
Add WRITE_FILE command, which writes string to a file
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 204de61..fb3c6e2 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -88,6 +88,7 @@
#include "cmQTWrapCPPCommand.cxx"
#include "cmQTWrapUICommand.cxx"
#include "cmWrapExcludeFilesCommand.cxx"
+#include "cmWriteFileCommand.cxx"
// on regular builds add in the load command command
// we do not add it in on the bootstrap because it
@@ -171,4 +172,5 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmQTWrapCPPCommand);
commands.push_back(new cmQTWrapUICommand);
commands.push_back(new cmWrapExcludeFilesCommand);
+ commands.push_back(new cmWriteFileCommand);
}