diff options
author | Betsy McPhail <betsy.mcphail@kitware.com> | 2017-06-23 17:03:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-07-10 20:25:18 (GMT) |
commit | 47b3a57c9bc5c7db608bc3b59b139a902535255f (patch) | |
tree | 127d1fc54ab81e5f69848772c74b46af5a15c5ad /Source/cmCTest.h | |
parent | d385962419ea3109dd21093c2368379f5fb51722 (diff) | |
download | CMake-47b3a57c9bc5c7db608bc3b59b139a902535255f.zip CMake-47b3a57c9bc5c7db608bc3b59b139a902535255f.tar.gz CMake-47b3a57c9bc5c7db608bc3b59b139a902535255f.tar.bz2 |
Display subproject timing summary
Use the '--no-subproject-summary' option to disable timing summary.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 190269a..0d2a903 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -438,7 +438,9 @@ public: this->StreamErr = err; } void AddSiteProperties(cmXMLWriter& xml); + bool GetLabelSummary() { return this->LabelSummary; } + bool GetSubprojectSummary() { return this->SubprojectSummary; } std::string GetCostDataFile(); @@ -467,6 +469,7 @@ private: bool ExtraVerbose; bool ProduceXML; bool LabelSummary; + bool SubprojectSummary; bool UseHTTP10; bool PrintLabels; bool Failover; |