12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef cmGlobalMSYSMakefileGenerator_h
- #define cmGlobalMSYSMakefileGenerator_h
- #include "cmGlobalUnixMakefileGenerator3.h"
- class cmGlobalMSYSMakefileGenerator : public cmGlobalUnixMakefileGenerator3
- {
- public:
- cmGlobalMSYSMakefileGenerator(cmake* cm);
- static cmGlobalGeneratorFactory* NewFactory()
- {
- return new cmGlobalGeneratorSimpleFactory<cmGlobalMSYSMakefileGenerator>();
- }
-
- virtual std::string GetName() const
- {
- return cmGlobalMSYSMakefileGenerator::GetActualName();
- }
- static std::string GetActualName() { return "MSYS Makefiles"; }
-
- static void GetDocumentation(cmDocumentationEntry& entry);
-
- virtual void EnableLanguage(std::vector<std::string> const& languages,
- cmMakefile*, bool optional);
- private:
- std::string FindMinGW(std::string const& makeloc);
- };
- #endif
|