diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-06-03 16:58:39 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-06-03 16:58:39 (GMT) |
commit | 672296fced8c16c82fd869526dff095a6c52464a (patch) | |
tree | d60d583b54cbecb0e9c7de21212c44277532d8d8 | |
parent | 473a172f60c94e33308d99ab0c6441b2c660e941 (diff) | |
download | CMake-672296fced8c16c82fd869526dff095a6c52464a.zip CMake-672296fced8c16c82fd869526dff095a6c52464a.tar.gz CMake-672296fced8c16c82fd869526dff095a6c52464a.tar.bz2 |
ENH: removed old commands
-rw-r--r-- | Source/cmCommands.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 4acc461..8fe500b 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -32,8 +32,6 @@ #include "cmRemoveCommand.cxx" #include "cmSetDirectoryPropertiesCommand.cxx" #include "cmSetTargetPropertiesCommand.cxx" -#include "cmSourceFilesCommand.cxx" -#include "cmSourceFilesRemoveCommand.cxx" #include "cmSourceGroupCommand.cxx" #include "cmVTKMakeInstantiatorCommand.cxx" #include "cmVTKWrapJavaCommand.cxx" @@ -44,7 +42,6 @@ #include "cmUseMangledMesaCommand.cxx" #include "cmUtilitySourceCommand.cxx" #include "cmWhileCommand.cxx" -#include "cmWrapExcludeFilesCommand.cxx" // This one must be last because it includes windows.h and // windows.h #defines GetCurrentDirectory which is a member @@ -76,8 +73,6 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands.push_back(new cmRemoveCommand); commands.push_back(new cmSetDirectoryPropertiesCommand); commands.push_back(new cmSetTargetPropertiesCommand); - commands.push_back(new cmSourceFilesCommand); - commands.push_back(new cmSourceFilesRemoveCommand); commands.push_back(new cmSourceGroupCommand); commands.push_back(new cmVTKMakeInstantiatorCommand); commands.push_back(new cmVTKWrapJavaCommand); @@ -88,6 +83,5 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands.push_back(new cmUseMangledMesaCommand); commands.push_back(new cmUtilitySourceCommand); commands.push_back(new cmWhileCommand); - commands.push_back(new cmWrapExcludeFilesCommand); #endif } |