diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-06-06 17:58:18 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-06-06 17:58:18 (GMT) |
commit | 37801ddaaec78597d5ac000bf60f6948ff865d06 (patch) | |
tree | a39ab5ff5c125d6e2c5dfb4235cf041518fbd266 /Source/cmCommands.cxx | |
parent | 355278324e0e96048e27195249161c1c68a7c412 (diff) | |
download | CMake-37801ddaaec78597d5ac000bf60f6948ff865d06.zip CMake-37801ddaaec78597d5ac000bf60f6948ff865d06.tar.gz CMake-37801ddaaec78597d5ac000bf60f6948ff865d06.tar.bz2 |
added enable testing deprecated some commands
Diffstat (limited to 'Source/cmCommands.cxx')
-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 a3fd06f..bdf753a 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -29,6 +29,7 @@ #include "cmConfigureFileCommand.cxx" #include "cmConfigureFileNoAutoconf.cxx" #include "cmElseCommand.cxx" +#include "cmEnableTestingCommand.cxx" #include "cmEndIfCommand.cxx" #include "cmExecProgramCommand.cxx" #include "cmFindFileCommand.cxx" @@ -87,6 +88,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmConfigureFileCommand); commands.push_back(new cmConfigureFileNoAutoconf); commands.push_back(new cmElseCommand); + commands.push_back(new cmEnableTestingCommand); commands.push_back(new cmEndIfCommand); commands.push_back(new cmExecProgramCommand); commands.push_back(new cmFindFileCommand); |