summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyDefinition.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-06-25 14:34:21 (GMT)
committerKen Martin <ken.martin@kitware.com>2007-06-25 14:34:21 (GMT)
commit0b9644910d637fdf7b006adb21ca04f3f218959f (patch)
tree3da2f0f09aef950b98ca1489790584387cc0c9df /Source/cmPropertyDefinition.cxx
parente35da01febbf86fefbd048dae473eb0993016613 (diff)
downloadCMake-0b9644910d637fdf7b006adb21ca04f3f218959f.zip
CMake-0b9644910d637fdf7b006adb21ca04f3f218959f.tar.gz
CMake-0b9644910d637fdf7b006adb21ca04f3f218959f.tar.bz2
ENH: added the ability to document variables and cached_variables
Diffstat (limited to 'Source/cmPropertyDefinition.cxx')
-rw-r--r--Source/cmPropertyDefinition.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmPropertyDefinition.cxx b/Source/cmPropertyDefinition.cxx
index 9091f34..4a0a0bc 100644
--- a/Source/cmPropertyDefinition.cxx
+++ b/Source/cmPropertyDefinition.cxx
@@ -57,6 +57,11 @@ void cmPropertyDefinition
break;
case cmProperty::TEST: this->LongName += " on CTest";
break;
+ case cmProperty::VARIABLE: this->LongName += " as a variable";
+ break;
+ case cmProperty::CACHED_VARIABLE: this->LongName +=
+ " as a cached variable";
+ break;
}
}