From e14d38d3c8588261d40ca115784c8663321a90f6 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 27 Feb 2001 16:49:33 -0500 Subject: [PATCH] added new commands --- Source/cmCommands.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index b693495ef..d60a92997 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -30,7 +30,9 @@ #include "cmCabilInstantiateCommand.cxx" #include "cmCabilInstantiateClassCommand.cxx" #include "cmFindFileCommand.cxx" +#include "cmWrapExcludeFilesCommand.cxx" #include "cmWrapTclCommand.cxx" +#include "cmBuildSharedLibrariesCommand.cxx" void GetPredefinedCommands(std::list& commands) { @@ -59,7 +61,9 @@ void GetPredefinedCommands(std::list& commands) commands.push_back(new cmCabilInstantiateCommand); commands.push_back(new cmCabilInstantiateClassCommand); commands.push_back(new cmFindFileCommand); + commands.push_back(new cmWrapExcludeFilesCommand); commands.push_back(new cmWrapTclCommand); + commands.push_back(new cmBuildSharedLibrariesCommand); }