Changeset 10 for trunk/qmake/generators/os2/gnumake.h
- Timestamp:
- May 19, 2009, 1:12:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/os2/gnumake.h
r7 r10 40 40 ****************************************************************************/ 41 41 42 #ifndef MINGW_MAKE_H43 #define MINGW_MAKE_H42 #ifndef GNUMAKE_H 43 #define GNUMAKE_H 44 44 45 45 #include "winmakefile.h" … … 47 47 QT_BEGIN_NAMESPACE 48 48 49 class MingwMakefileGenerator : public Win32MakefileGenerator49 class GNUMakefileGenerator : public Win32MakefileGenerator 50 50 { 51 51 public: 52 MingwMakefileGenerator();53 ~ MingwMakefileGenerator();52 GNUMakefileGenerator(); 53 ~GNUMakefileGenerator(); 54 54 protected: 55 55 QString escapeDependencyPath(const QString &path) const; … … 57 57 private: 58 58 bool isWindowsShell() const; 59 void write MingwParts(QTextStream &);59 void writeGNUParts(QTextStream &); 60 60 void writeIncPart(QTextStream &t); 61 61 void writeLibsPart(QTextStream &t); … … 69 69 70 70 QStringList &findDependencies(const QString &file); 71 71 72 72 QString preCompHeaderOut; 73 73 … … 80 80 }; 81 81 82 inline MingwMakefileGenerator::~MingwMakefileGenerator()82 inline GNUMakefileGenerator::~GNUMakefileGenerator() 83 83 { } 84 84 85 85 QT_END_NAMESPACE 86 86 87 #endif // MINGW_MAKE_H87 #endif // GNUMAKE_H
Note:
See TracChangeset
for help on using the changeset viewer.