MCPcopy Create free account
hub / github.com/Kitware/CMake / GetFactory

Method GetFactory

Source/cmExtraCodeLiteGenerator.cxx:31–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31cmExternalMakefileProjectGeneratorFactory*
32cmExtraCodeLiteGenerator::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
50void cmExtraCodeLiteGenerator::Generate()
51{

Callers

nothing calls this directly

Calls 3

emptyMethod · 0.45

Tested by

no test coverage detected