diff options
Diffstat (limited to 'Source/cmAddTestCommand.h')
-rw-r--r-- | Source/cmAddTestCommand.h | 9 |
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; }; |