diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-08-12 02:02:49 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-08-12 02:02:49 (GMT) |
commit | a696fe818333f168516929f734aad5359deac332 (patch) | |
tree | 85e758e91e5901157fa7c2e6cc5f02e41fce34dd /Source/CTest/cmProcess.h | |
parent | b7e3146275f3e8f9f376c150031d8bcc39a37439 (diff) | |
download | CMake-a696fe818333f168516929f734aad5359deac332.zip CMake-a696fe818333f168516929f734aad5359deac332.tar.gz CMake-a696fe818333f168516929f734aad5359deac332.tar.bz2 |
Output total time when using -j N
Diffstat (limited to 'Source/CTest/cmProcess.h')
-rw-r--r-- | Source/CTest/cmProcess.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/CTest/cmProcess.h b/Source/CTest/cmProcess.h index 67a5268..8b943c0 100644 --- a/Source/CTest/cmProcess.h +++ b/Source/CTest/cmProcess.h @@ -53,6 +53,7 @@ public: int GetId() { return this->Id; } void SetId(int id) { this->Id = id;} int GetExitValue() { return this->ExitValue;} + double GetTotalTime() { return this->TotalTime;} private: int LastOutputPipe; double Timeout; |