diff options
author | Ken Martin <ken.martin@kitware.com> | 2008-03-04 14:16:33 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2008-03-04 14:16:33 (GMT) |
commit | d47a5951edf48738db67dac22eef24de948965ec (patch) | |
tree | af6bc1dfefda26763e188227c276a811910ba9da /Source/cmake.cxx | |
parent | efb309fe2981f7030946b057544bc6c413c74744 (diff) | |
download | CMake-d47a5951edf48738db67dac22eef24de948965ec.zip CMake-d47a5951edf48738db67dac22eef24de948965ec.tar.gz CMake-d47a5951edf48738db67dac22eef24de948965ec.tar.bz2 |
ENH: add --help-policies and --help-policy command line options
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 80b0dfe..9950d20 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -2444,6 +2444,11 @@ void cmake::GetCommandDocumentation(std::vector<cmDocumentationEntry>& v, } } +void cmake::GetPolicyDocumentation(std::vector<cmDocumentationEntry>& v) +{ + this->Policies->GetDocumentation(v); +} + void cmake::GetPropertiesDocumentation(std::map<std::string, cmDocumentationSection *>& v) { |