diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-05-03 11:04:11 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-05-03 11:04:11 -0400 |
commit | 34a60cdcc92aff996f2521dfe2569acc0dda3c25 (patch) | |
tree | f96ba6bfb419eef463528474ad72612469e28230 /Source | |
parent | d55c3a29ad49238f295802b49691592c21e4b6c3 (diff) | |
download | cmake-34a60cdcc92aff996f2521dfe2569acc0dda3c25.tar.gz |
removed deprecated commands
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCommands.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index e542786b80..caa552cf42 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -8,7 +8,6 @@ #include "cmAddLibraryCommand.cxx" #include "cmAddTargetCommand.cxx" #include "cmAuxSourceDirectoryCommand.cxx" -#include "cmFindIncludeCommand.cxx" #include "cmFindLibraryCommand.cxx" #include "cmFindProgramCommand.cxx" #include "cmIncludeDirectoryCommand.cxx" @@ -17,14 +16,8 @@ #include "cmTargetLinkLibrariesCommand.cxx" #include "cmProjectCommand.cxx" #include "cmSourceFilesCommand.cxx" -#include "cmSourceFilesRequireCommand.cxx" #include "cmSubdirCommand.cxx" #include "cmTestsCommand.cxx" -#include "cmUnixDefinesCommand.cxx" -#include "cmUnixLibrariesCommand.cxx" -#include "cmWin32DefinesCommand.cxx" -#include "cmWin32LibrariesCommand.cxx" -#include "cmWin32IncludeDirectoryCommand.cxx" #include "cmConfigureFile.cxx" #include "cmConfigureFileNoAutoconf.cxx" #include "cmCableCommand.cxx" @@ -62,7 +55,6 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmAddLibraryCommand); commands.push_back(new cmAddTargetCommand); commands.push_back(new cmAuxSourceDirectoryCommand); - commands.push_back(new cmFindIncludeCommand); commands.push_back(new cmFindLibraryCommand); commands.push_back(new cmFindProgramCommand); commands.push_back(new cmIncludeDirectoryCommand); @@ -71,14 +63,8 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmTargetLinkLibrariesCommand); commands.push_back(new cmProjectCommand); commands.push_back(new cmSourceFilesCommand); - commands.push_back(new cmSourceFilesRequireCommand); commands.push_back(new cmSubdirCommand); commands.push_back(new cmTestsCommand); - commands.push_back(new cmUnixDefinesCommand); - commands.push_back(new cmUnixLibrariesCommand); - commands.push_back(new cmWin32DefinesCommand); - commands.push_back(new cmWin32LibrariesCommand); - commands.push_back(new cmWin32IncludeDirectoryCommand); commands.push_back(new cmConfigureFile); commands.push_back(new cmConfigureFileNoAutoconf); commands.push_back(new cmCableDefineSetCommand); |