diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-31 21:32:40 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-31 21:32:40 (GMT) |
commit | f6e5a878fc8de3ac3ef38b144a0a649a9f227682 (patch) | |
tree | ea4927fdd1c147884fc63e19fc417d325f933411 /Source/CTest/cmCTestGenericHandler.h | |
parent | f963c406ab2877bb53b66ad60d701b5d7b46f406 (diff) | |
download | CMake-f6e5a878fc8de3ac3ef38b144a0a649a9f227682.zip CMake-f6e5a878fc8de3ac3ef38b144a0a649a9f227682.tar.gz CMake-f6e5a878fc8de3ac3ef38b144a0a649a9f227682.tar.bz2 |
ENH: Add support for writing output file. While doing that, redesign the way ctest does output. There may still be problems with commands failing, but that should be fixed by applying the similar concept to whole CMake
Diffstat (limited to 'Source/CTest/cmCTestGenericHandler.h')
-rw-r--r-- | Source/CTest/cmCTestGenericHandler.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestGenericHandler.h b/Source/CTest/cmCTestGenericHandler.h index a40974c..f5b203e 100644 --- a/Source/CTest/cmCTestGenericHandler.h +++ b/Source/CTest/cmCTestGenericHandler.h @@ -34,7 +34,7 @@ public: /** * If verbose then more informaiton is printed out */ - void SetVerbose(bool val) { m_Verbose = val; } + void SetVerbose(bool val) { m_HandlerVerbose = val; } /** * Populate internals from CTest custom scripts @@ -51,6 +51,7 @@ public: * Set the CTest instance */ void SetCTestInstance(cmCTest* ctest) { m_CTest = ctest; } + cmCTest* GetCTestInstance() { return m_CTest; } /** * Construct handler @@ -64,7 +65,7 @@ public: const char* GetOption(const char* op); protected: - bool m_Verbose; + bool m_HandlerVerbose; cmCTest *m_CTest; t_StringToString m_Options; }; |