summaryrefslogtreecommitdiffstats
path: root/Source/cmCacheManager.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-03-13 14:53:53 (GMT)
committerBrad King <brad.king@kitware.com>2009-03-13 14:53:53 (GMT)
commit5cde305b99613839fb93bbb89f11e1f315626cee (patch)
tree8094187f0a14777aaf0dab9e614ce0d458a52867 /Source/cmCacheManager.cxx
parent5e49dc4346c276ada7bea1376266e8fb2956b78c (diff)
downloadCMake-5cde305b99613839fb93bbb89f11e1f315626cee.zip
CMake-5cde305b99613839fb93bbb89f11e1f315626cee.tar.gz
CMake-5cde305b99613839fb93bbb89f11e1f315626cee.tar.bz2
BUG: Document internal cache property MODIFIED
All cmake-defined properties should be documented, even if they are internal. This fixes the DocTest when CMAKE_STRICT is enabled.
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r--Source/cmCacheManager.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx
index c3e577c..4c57c5f 100644
--- a/Source/cmCacheManager.cxx
+++ b/Source/cmCacheManager.cxx
@@ -993,6 +993,13 @@ void cmCacheManager::DefineProperties(cmake *cm)
);
cm->DefineProperty
+ ("MODIFIED", cmProperty::CACHE,
+ "Internal management property. Do not set or get.",
+ "This is an internal cache entry property managed by CMake to "
+ "track interactive user modification of entries. Ignore it."
+ );
+
+ cm->DefineProperty
("STRINGS", cmProperty::CACHE,
"Enumerate possible STRING entry values for GUI selection.",
"For cache entries with type STRING, this enumerates a set of values. "