diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-20 17:14:47 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-20 17:14:47 (GMT) |
commit | 92714311c992a924a249bf9f27820f0512af7013 (patch) | |
tree | a228304f99ee151845d7d3db4fe9cf2857535a65 /Source/cmCommands.cxx | |
parent | e5a8887426da6314855beca296c532119e8d3935 (diff) | |
download | CMake-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.cxx | 2 |
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); } |