diff options
author | Jim Miller <millerjv@crd.ge.com> | 2001-06-06 00:34:57 (GMT) |
---|---|---|
committer | Jim Miller <millerjv@crd.ge.com> | 2001-06-06 00:34:57 (GMT) |
commit | 22270abae54796b9ac6991f2c02a5ea56ae4bd33 (patch) | |
tree | a12559417d06b46615e440f3bf542cbd33c70e90 | |
parent | 84dc25e9f5cde423b0b5b23542f305ac6837fb31 (diff) | |
download | CMake-22270abae54796b9ac6991f2c02a5ea56ae4bd33.zip CMake-22270abae54796b9ac6991f2c02a5ea56ae4bd33.tar.gz CMake-22270abae54796b9ac6991f2c02a5ea56ae4bd33.tar.bz2 |
ENH: Added AddTest command
-rw-r--r-- | Source/cmCommands.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 3002417..a3fd06f 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -8,6 +8,7 @@ #include "cmAddDefinitionsCommand.cxx" #include "cmAddExecutableCommand.cxx" #include "cmAddLibraryCommand.cxx" +#include "cmAddTestCommand.cxx" #include "cmAuxSourceDirectoryCommand.cxx" #include "cmBuildCommand.cxx" #include "cmBuildNameCommand.cxx" @@ -68,6 +69,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmAddDefinitionsCommand); commands.push_back(new cmAddExecutableCommand); commands.push_back(new cmAddLibraryCommand); + commands.push_back(new cmAddTestCommand); commands.push_back(new cmAuxSourceDirectoryCommand); commands.push_back(new cmBuildCommand); commands.push_back(new cmBuildNameCommand); |