diff options
Diffstat (limited to 'Source/CTest/cmCTestBuildCommand.h')
-rw-r--r-- | Source/CTest/cmCTestBuildCommand.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestBuildCommand.h b/Source/CTest/cmCTestBuildCommand.h index 4284a08..0607863 100644 --- a/Source/CTest/cmCTestBuildCommand.h +++ b/Source/CTest/cmCTestBuildCommand.h @@ -19,6 +19,8 @@ #include "cmCTestCommand.h" +class cmGlobalGenerator; + /** \class cmCTestBuild * \brief Run a ctest script * @@ -28,7 +30,8 @@ class cmCTestBuildCommand : public cmCTestCommand { public: - cmCTestBuildCommand() {} + cmCTestBuildCommand(); + ~cmCTestBuildCommand(); /** * This is a virtual constructor for the command. @@ -71,6 +74,8 @@ public: } cmTypeMacro(cmCTestBuildCommand, cmCTestCommand); + + cmGlobalGenerator* m_GlobalGenerator; }; |