ENH: removed old commands

This commit is contained in:
Ken Martin 2005-06-03 12:58:39 -04:00
parent 473a172f60
commit 672296fced

View File

@ -32,8 +32,6 @@
#include "cmRemoveCommand.cxx" #include "cmRemoveCommand.cxx"
#include "cmSetDirectoryPropertiesCommand.cxx" #include "cmSetDirectoryPropertiesCommand.cxx"
#include "cmSetTargetPropertiesCommand.cxx" #include "cmSetTargetPropertiesCommand.cxx"
#include "cmSourceFilesCommand.cxx"
#include "cmSourceFilesRemoveCommand.cxx"
#include "cmSourceGroupCommand.cxx" #include "cmSourceGroupCommand.cxx"
#include "cmVTKMakeInstantiatorCommand.cxx" #include "cmVTKMakeInstantiatorCommand.cxx"
#include "cmVTKWrapJavaCommand.cxx" #include "cmVTKWrapJavaCommand.cxx"
@ -44,7 +42,6 @@
#include "cmUseMangledMesaCommand.cxx" #include "cmUseMangledMesaCommand.cxx"
#include "cmUtilitySourceCommand.cxx" #include "cmUtilitySourceCommand.cxx"
#include "cmWhileCommand.cxx" #include "cmWhileCommand.cxx"
#include "cmWrapExcludeFilesCommand.cxx"
// This one must be last because it includes windows.h and // This one must be last because it includes windows.h and
// windows.h #defines GetCurrentDirectory which is a member // 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 cmRemoveCommand);
commands.push_back(new cmSetDirectoryPropertiesCommand); commands.push_back(new cmSetDirectoryPropertiesCommand);
commands.push_back(new cmSetTargetPropertiesCommand); commands.push_back(new cmSetTargetPropertiesCommand);
commands.push_back(new cmSourceFilesCommand);
commands.push_back(new cmSourceFilesRemoveCommand);
commands.push_back(new cmSourceGroupCommand); commands.push_back(new cmSourceGroupCommand);
commands.push_back(new cmVTKMakeInstantiatorCommand); commands.push_back(new cmVTKMakeInstantiatorCommand);
commands.push_back(new cmVTKWrapJavaCommand); commands.push_back(new cmVTKWrapJavaCommand);
@ -88,6 +83,5 @@ void GetPredefinedCommands(std::list<cmCommand*>&
commands.push_back(new cmUseMangledMesaCommand); commands.push_back(new cmUseMangledMesaCommand);
commands.push_back(new cmUtilitySourceCommand); commands.push_back(new cmUtilitySourceCommand);
commands.push_back(new cmWhileCommand); commands.push_back(new cmWhileCommand);
commands.push_back(new cmWrapExcludeFilesCommand);
#endif #endif
} }