Changeset 29 for trunk/qmake/generators/win32
- Timestamp:
- Jun 12, 2009, 1:32:11 PM (16 years ago)
- Location:
- trunk/qmake/generators/win32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/win32/mingw_make.cpp
r2 r29 58 58 } 59 59 60 bool MingwMakefileGenerator::is WindowsShell() const60 bool MingwMakefileGenerator::isDosLikeShell() const 61 61 { 62 62 #ifdef Q_OS_WIN 63 63 return Option::shellPath.isEmpty(); 64 64 #else 65 return Win32MakefileGenerator::is WindowsShell();65 return Win32MakefileGenerator::isDosLikeShell(); 66 66 #endif 67 67 } -
trunk/qmake/generators/win32/mingw_make.h
r2 r29 56 56 QString getLibTarget(); 57 57 private: 58 bool is WindowsShell() const;58 bool isDosLikeShell() const; 59 59 void writeMingwParts(QTextStream &); 60 60 void writeIncPart(QTextStream &t);
Note:
See TracChangeset
for help on using the changeset viewer.