summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyMap.cxx
diff options
context:
space:
mode:
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 ed2976b..c69ca7b 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;