diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-07-31 14:33:25 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-07-31 14:33:25 (GMT) |
commit | 6f31b0dfbd5fbd234d08f716703b6d05c659e086 (patch) | |
tree | 410fc30c88ba41252b2949d2cc6ff6f8d087e8d3 /Source/cmake.h | |
parent | 9926b7f717f90ca6b5055d1cbf205f258466df99 (diff) | |
download | CMake-6f31b0dfbd5fbd234d08f716703b6d05c659e086.zip CMake-6f31b0dfbd5fbd234d08f716703b6d05c659e086.tar.gz CMake-6f31b0dfbd5fbd234d08f716703b6d05c659e086.tar.bz2 |
ENH: add a --trace option
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 1c4351a..8d030c7 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -314,6 +314,9 @@ class cmake bool GetDebugOutput() { return this->DebugOutput; } void SetDebugOutputOn(bool b) { this->DebugOutput = b;} + // Do we want trace output during the cmake run. + bool GetTrace() { return this->Trace;} + void SetTrace(bool b) { this->Trace = b;} // Define a property void DefineProperty(const char *name, cmProperty::ScopeType scope, const char *ShortDescription, @@ -438,6 +441,7 @@ private: bool InTryCompile; bool ScriptMode; bool DebugOutput; + bool Trace; std::string CMakeEditCommand; std::string CMakeCommand; std::string CXXEnvironment; |