| 29 | } |
| 30 | |
| 31 | cmExternalMakefileProjectGeneratorFactory* |
| 32 | cmExtraCodeLiteGenerator::GetFactory() |
| 33 | { |
| 34 | static cmExternalMakefileProjectGeneratorSimpleFactory< |
| 35 | cmExtraCodeLiteGenerator> |
| 36 | factory("CodeLite", "Generates CodeLite project files (deprecated)."); |
| 37 | |
| 38 | if (factory.GetSupportedGlobalGenerators().empty()) { |
| 39 | #if defined(_WIN32) |
| 40 | factory.AddSupportedGlobalGenerator("MinGW Makefiles"); |
| 41 | factory.AddSupportedGlobalGenerator("NMake Makefiles"); |
| 42 | #endif |
| 43 | factory.AddSupportedGlobalGenerator("Ninja"); |
| 44 | factory.AddSupportedGlobalGenerator("Unix Makefiles"); |
| 45 | } |
| 46 | |
| 47 | return &factory; |
| 48 | } |
| 49 | |
| 50 | void cmExtraCodeLiteGenerator::Generate() |
| 51 | { |
nothing calls this directly
no test coverage detected