mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
ENH: Registered global generators are now kept in a table in the cmake instance. Added support for documentation with a Generators section.
This commit is contained in:
@@ -29,11 +29,16 @@ class cmGlobalVisualStudio71Generator : public cmGlobalVisualStudio7Generator
|
||||
{
|
||||
public:
|
||||
cmGlobalVisualStudio71Generator();
|
||||
static cmGlobalGenerator* New() { return new cmGlobalVisualStudio71Generator; }
|
||||
|
||||
///! Get the name for the generator.
|
||||
virtual const char* GetName() {
|
||||
virtual const char* GetName() const {
|
||||
return cmGlobalVisualStudio71Generator::GetActualName();}
|
||||
static const char* GetActualName() {return "Visual Studio 7 .NET 2003";}
|
||||
|
||||
/** Get the documentation entry for this generator. */
|
||||
virtual void GetDocumentation(cmDocumentationEntry& entry) const;
|
||||
|
||||
///! Create a local generator appropriate to this Global Generator
|
||||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user