From 730a278f890bb985c3a4931a597540683b52f6a7 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 11 Aug 2003 17:34:44 -0400 Subject: [PATCH] BUG: Bootstrapping with wxWindows support needs SEPARATE_ARGUMENTS command. --- Source/cmCommands.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 7e4f7b264..9671bb600 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& 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& 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);