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/cmake.h | |
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/cmake.h')
-rw-r--r-- | Source/cmake.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 1abb1e8..8f6b283 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -314,11 +314,9 @@ class cmake protected: cmPropertyMap Properties; - cmPropertyDefinitionMap TargetProperties; - cmPropertyDefinitionMap SourceFileProperties; - cmPropertyDefinitionMap DirectoryProperties; - cmPropertyDefinitionMap TestProperties; - cmPropertyDefinitionMap GlobalProperties; + + std::map<cmProperty::ScopeType, cmPropertyDefinitionMap> + PropertyDefinitions; typedef cmExternalMakefileProjectGenerator* (*CreateExtraGeneratorFunctionType)(); |