diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-11 10:12:14 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-12 18:08:48 (GMT) |
commit | 14c70b8c580c519ca38bcd9ba5ca8fc9e7629068 (patch) | |
tree | b75b10b3f5b2c2b338ded097f3094bb8baea9eb9 /Source/cmake.cxx | |
parent | 6ed19e615bada326c38a2b27d9378959503094ae (diff) | |
download | CMake-14c70b8c580c519ca38bcd9ba5ca8fc9e7629068.zip CMake-14c70b8c580c519ca38bcd9ba5ca8fc9e7629068.tar.gz CMake-14c70b8c580c519ca38bcd9ba5ca8fc9e7629068.tar.bz2 |
cmake: out-of-line try compile state methods.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index cf81ea4..0cbb299 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1935,6 +1935,16 @@ void cmake::UpdateProgress(const char *msg, float prog) } } +bool cmake::GetIsInTryCompile() const +{ + return this->InTryCompile; +} + +void cmake::SetIsInTryCompile(bool b) +{ + this->InTryCompile = b; +} + void cmake::GetGeneratorDocumentation(std::vector<cmDocumentationEntry>& v) { for(RegisteredGeneratorsVector::const_iterator i = |