diff options
author | Brad King <brad.king@kitware.com> | 2009-03-10 15:10:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-03-10 15:10:42 (GMT) |
commit | ca9fb4826f89722a5a190e0c69e6bf5c26889a55 (patch) | |
tree | fc2f3474f2417783a7019db34fcdb4d4b98a702d /Source/cmPropertyDefinitionMap.cxx | |
parent | effd6d6e0b4445811b27af9cbc9db6923f6aacdf (diff) | |
download | CMake-ca9fb4826f89722a5a190e0c69e6bf5c26889a55.zip CMake-ca9fb4826f89722a5a190e0c69e6bf5c26889a55.tar.gz CMake-ca9fb4826f89722a5a190e0c69e6bf5c26889a55.tar.bz2 |
ENH: Use cmPropertyMap for cache properties
This re-implements cache entry property storage in cmCacheManager to use
cmPropertyMap so it can share the standard property implementation.
Diffstat (limited to 'Source/cmPropertyDefinitionMap.cxx')
-rw-r--r-- | Source/cmPropertyDefinitionMap.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmPropertyDefinitionMap.cxx b/Source/cmPropertyDefinitionMap.cxx index b9d0cde..90351bd 100644 --- a/Source/cmPropertyDefinitionMap.cxx +++ b/Source/cmPropertyDefinitionMap.cxx @@ -69,6 +69,9 @@ void cmPropertyDefinitionMap case cmProperty::TEST: secName = "Properties on Tests"; break; + case cmProperty::CACHE: + secName = "Properties on Cache Entries"; + break; case cmProperty::VARIABLE: secName = "Variables"; break; |