diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-06-25 14:34:21 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-06-25 14:34:21 (GMT) |
commit | 0b9644910d637fdf7b006adb21ca04f3f218959f (patch) | |
tree | 3da2f0f09aef950b98ca1489790584387cc0c9df /Source/cmPropertyMap.cxx | |
parent | e35da01febbf86fefbd048dae473eb0993016613 (diff) | |
download | CMake-0b9644910d637fdf7b006adb21ca04f3f218959f.zip CMake-0b9644910d637fdf7b006adb21ca04f3f218959f.tar.gz CMake-0b9644910d637fdf7b006adb21ca04f3f218959f.tar.bz2 |
ENH: added the ability to document variables and cached_variables
Diffstat (limited to 'Source/cmPropertyMap.cxx')
-rw-r--r-- | Source/cmPropertyMap.cxx | 12 |
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; |