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:
@@ -28,11 +28,16 @@ class cmGlobalUnixMakefileGenerator : public cmGlobalGenerator
|
||||
{
|
||||
public:
|
||||
cmGlobalUnixMakefileGenerator();
|
||||
static cmGlobalGenerator* New() { return new cmGlobalUnixMakefileGenerator; }
|
||||
|
||||
///! Get the name for the generator.
|
||||
virtual const char* GetName() {
|
||||
virtual const char* GetName() const {
|
||||
return cmGlobalUnixMakefileGenerator::GetActualName();}
|
||||
static const char* GetActualName() {return "Unix Makefiles";}
|
||||
|
||||
/** 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