summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraCodeLiteGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-08-04 13:56:47 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-08-04 13:56:47 (GMT)
commit2df3719d2c6d3426f5a6562c11cd8b0ef9830184 (patch)
tree401ef24e9634a0f7c05b5a7c332648142d47dd15 /Source/cmExtraCodeLiteGenerator.h
parentac7c12eced7ab3ba6d70a2c6cb95bb0e6ebbe024 (diff)
parentcd52a225d298dc1a4924b82ebac0ac74fccf3356 (diff)
downloadCMake-2df3719d2c6d3426f5a6562c11cd8b0ef9830184.zip
CMake-2df3719d2c6d3426f5a6562c11cd8b0ef9830184.tar.gz
CMake-2df3719d2c6d3426f5a6562c11cd8b0ef9830184.tar.bz2
Merge topic 'extra-generator-factories'
cd52a225 Report more information about extra generators in generator factories a354f60c Refactor extra generator registration to use factories
Diffstat (limited to 'Source/cmExtraCodeLiteGenerator.h')
-rw-r--r--Source/cmExtraCodeLiteGenerator.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/Source/cmExtraCodeLiteGenerator.h b/Source/cmExtraCodeLiteGenerator.h
index f2ee85c..e20e745 100644
--- a/Source/cmExtraCodeLiteGenerator.h
+++ b/Source/cmExtraCodeLiteGenerator.h
@@ -36,18 +36,7 @@ protected:
public:
cmExtraCodeLiteGenerator();
- std::string GetName() const CM_OVERRIDE
- {
- return cmExtraCodeLiteGenerator::GetActualName();
- }
- static std::string GetActualName() { return "CodeLite"; }
- static cmExternalMakefileProjectGenerator* New()
- {
- return new cmExtraCodeLiteGenerator;
- }
- /** Get the documentation entry for this generator. */
- void GetDocumentation(cmDocumentationEntry& entry,
- const std::string& fullName) const CM_OVERRIDE;
+ static cmExternalMakefileProjectGeneratorFactory* GetFactory();
void Generate() CM_OVERRIDE;
void CreateProjectFile(const std::vector<cmLocalGenerator*>& lgs);