diff options
author | Brad King <brad.king@kitware.com> | 2003-07-08 01:52:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-07-08 01:52:10 (GMT) |
commit | e5ed57ec18e1cd1d460bd77391db15a5d4afdcc1 (patch) | |
tree | 1a6c2c3b22eb90c0dfd647e08b05aea8f603f439 /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | cbb1de923a3fb977f3910d4054191cdffc478134 (diff) | |
download | CMake-e5ed57ec18e1cd1d460bd77391db15a5d4afdcc1.zip CMake-e5ed57ec18e1cd1d460bd77391db15a5d4afdcc1.tar.gz CMake-e5ed57ec18e1cd1d460bd77391db15a5d4afdcc1.tar.bz2 |
ENH: Registered global generators are now kept in a table in the cmake instance. Added support for documentation with a Generators section.
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index c7d0324..4486f3c 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -584,3 +584,11 @@ std::vector<std::string> *cmGlobalVisualStudio7Generator::GetConfigurations() { return &m_Configurations; }; + +//---------------------------------------------------------------------------- +void cmGlobalVisualStudio7Generator::GetDocumentation(cmDocumentationEntry& entry) const +{ + entry.name = this->GetName(); + entry.brief = "Generates Visual Studio .NET 2002 project files."; + entry.full = ""; +} |