diff options
author | Brad King <brad.king@kitware.com> | 2009-03-10 15:10:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-03-10 15:10:59 (GMT) |
commit | e5e91d617940cab2ea4e8630c6c20cd09794b3a9 (patch) | |
tree | 07799700331300e0e2e2a4ffdef98f5040f20736 /Source/cmCacheManager.h | |
parent | ca9fb4826f89722a5a190e0c69e6bf5c26889a55 (diff) | |
download | CMake-e5e91d617940cab2ea4e8630c6c20cd09794b3a9.zip CMake-e5e91d617940cab2ea4e8630c6c20cd09794b3a9.tar.gz CMake-e5e91d617940cab2ea4e8630c6c20cd09794b3a9.tar.bz2 |
ENH: Teach set/get_property about CACHE properties
This adds the CACHE option to set_property and get_property commands.
This allows full control over cache entry information, so advanced users
can tweak their project cache as desired. The set_property command
allows only pre-defined CACHE properties to be set since others would
not persist anyway.
Diffstat (limited to 'Source/cmCacheManager.h')
-rw-r--r-- | Source/cmCacheManager.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h index e57042b..abd14bd 100644 --- a/Source/cmCacheManager.h +++ b/Source/cmCacheManager.h @@ -105,6 +105,7 @@ public: */ static CacheEntryType StringToType(const char*); static const char* TypeToString(CacheEntryType); + static bool IsType(const char*); ///! Load a cache for given makefile. Loads from ouput home. bool LoadCache(cmMakefile*); |