diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-04 15:30:46 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-04 15:30:46 (GMT) |
commit | de10cfc72e51094d3a8f3a8d10f09a902330a2f3 (patch) | |
tree | 19175a07cd503bb427d1f394dc9a7d555b28246f /Source/cmCommands.cxx | |
parent | 33e1a4a09aaedfcb869e2f4217815e09f0d3187f (diff) | |
download | CMake-de10cfc72e51094d3a8f3a8d10f09a902330a2f3.zip CMake-de10cfc72e51094d3a8f3a8d10f09a902330a2f3.tar.gz CMake-de10cfc72e51094d3a8f3a8d10f09a902330a2f3.tar.bz2 |
ENH: move testing stuff to cmake from configure, good bye dashboard... :)
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index c56c90d..d65a679 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -6,7 +6,7 @@ #include "cmAbstractFilesCommand.cxx" #include "cmAddExecutableCommand.cxx" #include "cmAddLibraryCommand.cxx" -#include "cmAddTargetCommand.cxx" +#include "cmAddCustomTargetCommand.cxx" #include "cmAuxSourceDirectoryCommand.cxx" #include "cmFindLibraryCommand.cxx" #include "cmFindProgramCommand.cxx" @@ -48,13 +48,21 @@ #include "cmAddDefinitionsCommand.cxx" #include "cmOptionCommand.cxx" #include "cmIncludeCommand.cxx" +#include "cmSiteNameCommand.cxx" +#include "cmBuildNameCommand.cxx" +#include "cmExecProgram.cxx" +#include "cmBuildCommand.cxx" void GetPredefinedCommands(std::list<cmCommand*>& commands) { + commands.push_back(new cmBuildCommand); + commands.push_back(new cmExecProgram); + commands.push_back(new cmBuildNameCommand); + commands.push_back(new cmSiteNameCommand); commands.push_back(new cmAbstractFilesCommand); commands.push_back(new cmAddExecutableCommand); commands.push_back(new cmAddLibraryCommand); - commands.push_back(new cmAddTargetCommand); + commands.push_back(new cmAddCustomTargetCommand); commands.push_back(new cmAuxSourceDirectoryCommand); commands.push_back(new cmFindLibraryCommand); commands.push_back(new cmFindProgramCommand); |