summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-08-11 21:34:44 (GMT)
committerBrad King <brad.king@kitware.com>2003-08-11 21:34:44 (GMT)
commit730a278f890bb985c3a4931a597540683b52f6a7 (patch)
tree24c905c8b0c0778ee351d1f2879beb05a4cfb71f /Source/cmCommands.cxx
parenta6bd32460543245bd773032bb8cc48ca27044d5e (diff)
downloadCMake-730a278f890bb985c3a4931a597540683b52f6a7.zip
CMake-730a278f890bb985c3a4931a597540683b52f6a7.tar.gz
CMake-730a278f890bb985c3a4931a597540683b52f6a7.tar.bz2
BUG: Bootstrapping with wxWindows support needs SEPARATE_ARGUMENTS command.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 7e4f7b2..9671bb6 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -58,6 +58,7 @@
#include "cmMessageCommand.cxx"
#include "cmOptionCommand.cxx"
#include "cmProjectCommand.cxx"
+#include "cmSeparateArgumentsCommand.cxx"
#include "cmSetCommand.cxx"
#include "cmSetSourceFilesPropertiesCommand.cxx"
#include "cmSiteNameCommand.cxx"
@@ -87,7 +88,6 @@
#include "cmLoadCacheCommand.cxx"
#include "cmOutputRequiredFilesCommand.cxx"
#include "cmRemoveCommand.cxx"
-#include "cmSeparateArgumentsCommand.cxx"
#include "cmSetTargetPropertiesCommand.cxx"
#include "cmSourceFilesCommand.cxx"
#include "cmSourceFilesRemoveCommand.cxx"
@@ -150,6 +150,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmMessageCommand);
commands.push_back(new cmOptionCommand);
commands.push_back(new cmProjectCommand);
+ commands.push_back(new cmSeparateArgumentsCommand);
commands.push_back(new cmSetCommand);
commands.push_back(new cmSetSourceFilesPropertiesCommand);
commands.push_back(new cmSiteNameCommand);
@@ -177,7 +178,6 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmLoadCommandCommand);
commands.push_back(new cmOutputRequiredFilesCommand);
commands.push_back(new cmRemoveCommand);
- commands.push_back(new cmSeparateArgumentsCommand);
commands.push_back(new cmSetTargetPropertiesCommand);
commands.push_back(new cmSourceFilesCommand);
commands.push_back(new cmSourceFilesRemoveCommand);