diff options
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 6fe1eb3..120dd2e 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -195,7 +195,7 @@ public: bool ShouldUseHTTP10() { return this->UseHTTP10; } - bool ShouldCompressTestOutput() { return this->CompressTestOutput; } + bool ShouldCompressTestOutput(); //Used for parallel ctest job scheduling std::string GetScheduleType() { return this->ScheduleType; } @@ -396,6 +396,9 @@ private: bool RunConfigurationScript; + //flag for lazy getter (optimization) + bool ComputedCompressOutput; + int GenerateNotesFile(const char* files); // these are helper classes |