| 2003 | } |
| 2004 | |
| 2005 | void cmake::AddDefaultExtraGenerators() |
| 2006 | { |
| 2007 | #if !defined(CMAKE_BOOTSTRAP) |
| 2008 | this->ExtraGenerators.push_back(cmExtraCodeBlocksGenerator::GetFactory()); |
| 2009 | this->ExtraGenerators.push_back(cmExtraCodeLiteGenerator::GetFactory()); |
| 2010 | this->ExtraGenerators.push_back(cmExtraEclipseCDT4Generator::GetFactory()); |
| 2011 | this->ExtraGenerators.push_back(cmExtraKateGenerator::GetFactory()); |
| 2012 | this->ExtraGenerators.push_back(cmExtraSublimeTextGenerator::GetFactory()); |
| 2013 | #endif |
| 2014 | } |
| 2015 | |
| 2016 | void cmake::GetRegisteredGenerators( |
| 2017 | std::vector<GeneratorInfo>& generators) const |