diff options
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 6ef86b9..7e832dc 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -101,6 +101,7 @@ public: static int GetTestModelFromString(const char* str); static std::string CleanString(const std::string& str); std::string GetDartConfiguration(const char *name); + void SetDartConfiguration(const char *name, const char* value); /** * constructor and destructor @@ -192,9 +193,15 @@ public: */ cmCTestGenericHandler* GetHandler(const char* handler); + /* + * Set the CTest variable from CMake variable + */ + bool SetDartConfigurationFromCMakeVariable(cmMakefile* mf, const char* dconfig, const char* cmake_var); + private: std::string m_ConfigType; bool m_Verbose; + bool m_ExtraVerbose; bool m_ProduceXML; bool m_ForceNewCTestProcess; |