diff options
author | Brad King <brad.king@kitware.com> | 2016-08-04 13:56:47 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-08-04 13:56:47 (GMT) |
commit | 2df3719d2c6d3426f5a6562c11cd8b0ef9830184 (patch) | |
tree | 401ef24e9634a0f7c05b5a7c332648142d47dd15 /Source/cmExtraCodeLiteGenerator.h | |
parent | ac7c12eced7ab3ba6d70a2c6cb95bb0e6ebbe024 (diff) | |
parent | cd52a225d298dc1a4924b82ebac0ac74fccf3356 (diff) | |
download | CMake-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.h | 13 |
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); |