summaryrefslogtreecommitdiff
path: root/Source/cmGlobalBorlandMakefileGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-07-07 21:52:10 -0400
committerBrad King <brad.king@kitware.com>2003-07-07 21:52:10 -0400
commite5ed57ec18e1cd1d460bd77391db15a5d4afdcc1 (patch)
tree1a6c2c3b22eb90c0dfd647e08b05aea8f603f439 /Source/cmGlobalBorlandMakefileGenerator.h
parentcbb1de923a3fb977f3910d4054191cdffc478134 (diff)
downloadcmake-e5ed57ec18e1cd1d460bd77391db15a5d4afdcc1.tar.gz
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/cmGlobalBorlandMakefileGenerator.h')
-rw-r--r--Source/cmGlobalBorlandMakefileGenerator.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/cmGlobalBorlandMakefileGenerator.h b/Source/cmGlobalBorlandMakefileGenerator.h
index 7f66932c5b..6f5b64e417 100644
--- a/Source/cmGlobalBorlandMakefileGenerator.h
+++ b/Source/cmGlobalBorlandMakefileGenerator.h
@@ -28,11 +28,16 @@ class cmGlobalBorlandMakefileGenerator : public cmGlobalNMakeMakefileGenerator
{
public:
cmGlobalBorlandMakefileGenerator();
+ static cmGlobalGenerator* New() { return new cmGlobalBorlandMakefileGenerator; }
+
///! Get the name for the generator.
- virtual const char* GetName() {
+ virtual const char* GetName() const {
return cmGlobalBorlandMakefileGenerator::GetActualName();}
static const char* GetActualName() {return "Borland 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();