diff options
author | Berk Geveci <berk.geveci@kitware.com> | 2001-08-15 17:40:56 (GMT) |
---|---|---|
committer | Berk Geveci <berk.geveci@kitware.com> | 2001-08-15 17:40:56 (GMT) |
commit | 06a0f67f93435e49d14c45c234a0bf2246b28b83 (patch) | |
tree | df5985b53ece52d974e93a6227c8ac2517de1f64 /Source/cmCacheManager.h | |
parent | 1cf9a35680d64fa30221e35397d9ee5263c3c169 (diff) | |
download | CMake-06a0f67f93435e49d14c45c234a0bf2246b28b83.zip CMake-06a0f67f93435e49d14c45c234a0bf2246b28b83.tar.gz CMake-06a0f67f93435e49d14c45c234a0bf2246b28b83.tar.bz2 |
1. Added EXCLUDE option to LOAD_CACHE.
2. Entries brought in from another cache are now marked as internal.
Diffstat (limited to 'Source/cmCacheManager.h')
-rw-r--r-- | Source/cmCacheManager.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h index bb7a971..206cec8 100644 --- a/Source/cmCacheManager.h +++ b/Source/cmCacheManager.h @@ -78,6 +78,8 @@ public: ///! Load a cache for given makefile. Loads from path/CMakeCache.txt. bool LoadCache(const char* path); bool LoadCache(const char* path, bool internal); + bool LoadCache(const char* path, bool internal, + std::set<std::string>& excludes); ///! Put cache definitions into makefile void DefineCache(cmMakefile*); |