diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-02-27 21:49:33 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-02-27 21:49:33 (GMT) |
commit | e14d38d3c8588261d40ca115784c8663321a90f6 (patch) | |
tree | 74c6e0ca46a658a9e93940afe9be9135ae69ab66 | |
parent | a91e3b515866b594930a2c91495cb2f6ff8d6a5c (diff) | |
download | CMake-e14d38d3c8588261d40ca115784c8663321a90f6.zip CMake-e14d38d3c8588261d40ca115784c8663321a90f6.tar.gz CMake-e14d38d3c8588261d40ca115784c8663321a90f6.tar.bz2 |
added new commands
-rw-r--r-- | Source/cmCommands.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index b693495..d60a929 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<cmCommand*>& commands) { @@ -59,7 +61,9 @@ void GetPredefinedCommands(std::list<cmCommand*>& 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); } |