diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:21:41 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:36:58 (GMT) |
commit | 062ed22ec43809068526706d2600297095412911 (patch) | |
tree | 92cb142a8d16457b6d1bce47c07289cd899aa59d /Source/cmake.cxx | |
parent | a02e53eb947b61dd25ecd139a213d4062fbc5b62 (diff) | |
download | CMake-062ed22ec43809068526706d2600297095412911.zip CMake-062ed22ec43809068526706d2600297095412911.tar.gz CMake-062ed22ec43809068526706d2600297095412911.tar.bz2 |
cmState: Add cache file manipulation wrappers.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index ad5f6b7..4fc48d5 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1760,17 +1760,17 @@ bool cmake::LoadCache(const std::string& path, bool internal, std::set<std::string>& excludes, std::set<std::string>& includes) { - return this->CacheManager->LoadCache(path, internal, excludes, includes); + return this->State->LoadCache(path, internal, excludes, includes); } bool cmake::SaveCache(const std::string& path) { - return this->CacheManager->SaveCache(path); + return this->State->SaveCache(path); } bool cmake::DeleteCache(const std::string& path) { - return this->CacheManager->DeleteCache(path); + return this->State->DeleteCache(path); } void cmake::SetProgressCallback(ProgressCallbackType f, void *cd) |