diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-07-31 15:51:42 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-07-31 15:51:42 (GMT) |
commit | bebc745824920465c9df5fee9baf9b6f8a35d34f (patch) | |
tree | 958f9a784bd1aa1960fcd318d6123b5c928a0dc0 /Source/cmCommands.cxx | |
parent | ec3f3b5a2db2c0d60fe2dbe31b21cf937fc8264e (diff) | |
download | CMake-bebc745824920465c9df5fee9baf9b6f8a35d34f.zip CMake-bebc745824920465c9df5fee9baf9b6f8a35d34f.tar.gz CMake-bebc745824920465c9df5fee9baf9b6f8a35d34f.tar.bz2 |
ENH: Add set and get test propety command
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 8fe500b..6b1a01f 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -24,6 +24,7 @@ #include "cmGetCMakePropertyCommand.cxx" #include "cmGetDirectoryPropertyCommand.cxx" #include "cmGetTargetPropertyCommand.cxx" +#include "cmGetTestPropertyCommand.cxx" #include "cmITKWrapTclCommand.cxx" #include "cmIncludeExternalMSProjectCommand.cxx" #include "cmLinkLibrariesCommand.cxx" @@ -32,6 +33,7 @@ #include "cmRemoveCommand.cxx" #include "cmSetDirectoryPropertiesCommand.cxx" #include "cmSetTargetPropertiesCommand.cxx" +#include "cmSetTestsPropertiesCommand.cxx" #include "cmSourceGroupCommand.cxx" #include "cmVTKMakeInstantiatorCommand.cxx" #include "cmVTKWrapJavaCommand.cxx" @@ -64,6 +66,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands.push_back(new cmGetCMakePropertyCommand); commands.push_back(new cmGetDirectoryPropertyCommand); commands.push_back(new cmGetTargetPropertyCommand); + commands.push_back(new cmGetTestPropertyCommand); commands.push_back(new cmITKWrapTclCommand); commands.push_back(new cmIncludeExternalMSProjectCommand); commands.push_back(new cmLinkLibrariesCommand); @@ -73,6 +76,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands.push_back(new cmRemoveCommand); commands.push_back(new cmSetDirectoryPropertiesCommand); commands.push_back(new cmSetTargetPropertiesCommand); + commands.push_back(new cmSetTestsPropertiesCommand); commands.push_back(new cmSourceGroupCommand); commands.push_back(new cmVTKMakeInstantiatorCommand); commands.push_back(new cmVTKWrapJavaCommand); |