summaryrefslogtreecommitdiffstats
path: root/Source/cmAddTestCommand.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-06-06 17:58:18 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-06-06 17:58:18 (GMT)
commit37801ddaaec78597d5ac000bf60f6948ff865d06 (patch)
treea39ab5ff5c125d6e2c5dfb4235cf041518fbd266 /Source/cmAddTestCommand.h
parent355278324e0e96048e27195249161c1c68a7c412 (diff)
downloadCMake-37801ddaaec78597d5ac000bf60f6948ff865d06.zip
CMake-37801ddaaec78597d5ac000bf60f6948ff865d06.tar.gz
CMake-37801ddaaec78597d5ac000bf60f6948ff865d06.tar.bz2
added enable testing deprecated some commands
Diffstat (limited to 'Source/cmAddTestCommand.h')
-rw-r--r--Source/cmAddTestCommand.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmAddTestCommand.h b/Source/cmAddTestCommand.h
index 65e1e9e..6137072 100644
--- a/Source/cmAddTestCommand.h
+++ b/Source/cmAddTestCommand.h
@@ -67,6 +67,12 @@ public:
virtual bool InitialPass(std::vector<std::string>& args);
/**
+ * This is called at the end after all the information
+ * specified by the command is accumulated.
+ */
+ virtual void FinalPass();
+
+ /**
* The name of the command as specified in CMakeList.txt.
*/
virtual const char* GetName() { return "ADD_TEST";}
@@ -94,6 +100,9 @@ public:
}
cmTypeMacro(cmAddTestCommand, cmCommand);
+
+private:
+ std::vector<std::string> m_Args;
};