diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-30 18:00:35 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-30 18:00:35 (GMT) |
commit | 2d37e6d1a86ea2397645fc94b7a0afe9354aa326 (patch) | |
tree | fa1d7b26f8d9e27de8b19081f995589c377b1e42 /Source/cmCommands.cxx | |
parent | ec4331d2737f882e5f2f23360987f30364095506 (diff) | |
download | CMake-2d37e6d1a86ea2397645fc94b7a0afe9354aa326.zip CMake-2d37e6d1a86ea2397645fc94b7a0afe9354aa326.tar.gz CMake-2d37e6d1a86ea2397645fc94b7a0afe9354aa326.tar.bz2 |
ENH: add new command to separate space separated arguments
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 0b2e052..4380e8f 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -64,6 +64,7 @@ #include "cmOutputRequiredFilesCommand.cxx" #include "cmProjectCommand.cxx" #include "cmRemoveCommand.cxx" +#include "cmSeparateArgumentsCommand.cxx" #include "cmSetCommand.cxx" #include "cmSetSourceFilesPropertiesCommand.cxx" #include "cmSiteNameCommand.cxx" @@ -131,6 +132,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmOutputRequiredFilesCommand); commands.push_back(new cmProjectCommand); commands.push_back(new cmRemoveCommand); + commands.push_back(new cmSeparateArgumentsCommand); commands.push_back(new cmSetCommand); commands.push_back(new cmSetSourceFilesPropertiesCommand); commands.push_back(new cmSiteNameCommand); |