summaryrefslogtreecommitdiff
path: root/Source/cmPropertyMap.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-06-25 10:34:21 -0400
committerKen Martin <ken.martin@kitware.com>2007-06-25 10:34:21 -0400
commit0b9644910d637fdf7b006adb21ca04f3f218959f (patch)
tree3da2f0f09aef950b98ca1489790584387cc0c9df /Source/cmPropertyMap.cxx
parente35da01febbf86fefbd048dae473eb0993016613 (diff)
downloadcmake-0b9644910d637fdf7b006adb21ca04f3f218959f.tar.gz
ENH: added the ability to document variables and cached_variables
Diffstat (limited to 'Source/cmPropertyMap.cxx')
-rw-r--r--Source/cmPropertyMap.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmPropertyMap.cxx b/Source/cmPropertyMap.cxx
index ed2976bcc6..c69ca7bc73 100644
--- a/Source/cmPropertyMap.cxx
+++ b/Source/cmPropertyMap.cxx
@@ -75,6 +75,12 @@ void cmPropertyMap::SetProperty(const char *name, const char *value,
case cmProperty::TEST:
msg += "test.";
break;
+ case cmProperty::VARIABLE:
+ msg += "variable.";
+ break;
+ case cmProperty::CACHED_VARIABLE:
+ msg += "cached variable.";
+ break;
default:
msg += "unknown.";
break;
@@ -128,6 +134,12 @@ const char *cmPropertyMap
case cmProperty::TEST:
msg += "test.";
break;
+ case cmProperty::VARIABLE:
+ msg += "variable.";
+ break;
+ case cmProperty::CACHED_VARIABLE:
+ msg += "cached variable.";
+ break;
default:
msg += "unknown.";
break;