From 648eedf9c606f829086ce44ec22f0606e476043d Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Mon, 4 Jun 2001 17:16:36 -0400 Subject: [PATCH] removed find include command finally added message --- Source/cmCommands.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 871f37d37..3002417c8 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -31,7 +31,6 @@ #include "cmEndIfCommand.cxx" #include "cmExecProgramCommand.cxx" #include "cmFindFileCommand.cxx" -#include "cmFindIncludeCommand.cxx" #include "cmFindLibraryCommand.cxx" #include "cmFindPathCommand.cxx" #include "cmFindProgramCommand.cxx" @@ -46,6 +45,7 @@ #include "cmLinkLibrariesCommand.cxx" #include "cmLoadCacheCommand.cxx" #include "cmMakeDirectoryCommand.cxx" +#include "cmMessageCommand.cxx" #include "cmOptionCommand.cxx" #include "cmProjectCommand.cxx" #include "cmSetCommand.cxx" @@ -88,7 +88,6 @@ void GetPredefinedCommands(std::list& commands) commands.push_back(new cmEndIfCommand); commands.push_back(new cmExecProgramCommand); commands.push_back(new cmFindFileCommand); - commands.push_back(new cmFindIncludeCommand); commands.push_back(new cmFindLibraryCommand); commands.push_back(new cmFindPathCommand); commands.push_back(new cmFindProgramCommand); @@ -103,6 +102,7 @@ void GetPredefinedCommands(std::list& commands) commands.push_back(new cmLinkLibrariesCommand); commands.push_back(new cmLoadCacheCommand); commands.push_back(new cmMakeDirectoryCommand); + commands.push_back(new cmMessageCommand); commands.push_back(new cmOptionCommand); commands.push_back(new cmProjectCommand); commands.push_back(new cmSetCommand);