From ea26cc537eeed1f7ca5c10491be687b970920a28 Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Thu, 7 Jun 2007 14:31:56 -0400 Subject: [PATCH] BUG: fix Bootstrap test Alex --- Source/cmBootstrapCommands.cxx | 2 ++ Source/cmCommands.cxx | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx index f129eb08a..a03fa3adb 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -48,6 +48,7 @@ #include "cmGetCMakePropertyCommand.cxx" #include "cmGetFilenameComponentCommand.cxx" #include "cmGetSourceFilePropertyCommand.cxx" +#include "cmGetTargetPropertyCommand.cxx" #include "cmHexFileConverter.cxx" #include "cmIfCommand.cxx" #include "cmIncludeCommand.cxx" @@ -100,6 +101,7 @@ void GetBootstrapCommands(std::list& commands) commands.push_back(new cmGetCMakePropertyCommand); commands.push_back(new cmGetFilenameComponentCommand); commands.push_back(new cmGetSourceFilePropertyCommand); + commands.push_back(new cmGetTargetPropertyCommand); commands.push_back(new cmIfCommand); commands.push_back(new cmIncludeCommand); commands.push_back(new cmIncludeDirectoryCommand); diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 63a5cce28..092b9b8eb 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -27,7 +27,6 @@ #include "cmExportLibraryDependencies.cxx" #include "cmFLTKWrapUICommand.cxx" #include "cmGetDirectoryPropertyCommand.cxx" -#include "cmGetTargetPropertyCommand.cxx" #include "cmGetTestPropertyCommand.cxx" #include "cmIncludeExternalMSProjectCommand.cxx" #include "cmInstallCommand.cxx" @@ -80,7 +79,6 @@ void GetPredefinedCommands(std::list& commands.push_back(new cmExportLibraryDependenciesCommand); commands.push_back(new cmFLTKWrapUICommand); commands.push_back(new cmGetDirectoryPropertyCommand); - commands.push_back(new cmGetTargetPropertyCommand); commands.push_back(new cmGetTestPropertyCommand); commands.push_back(new cmIncludeExternalMSProjectCommand); commands.push_back(new cmInstallCommand);