Changeset 38
- Timestamp:
- Jun 20, 2009, 12:16:06 AM (16 years ago)
- Location:
- trunk/qmake/generators/win32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/win32/winmakefile.cpp
r37 r38 595 595 Option::fixPathToTargetOS(var("QMAKE_IDL"), false)) << endl; 596 596 t << "ZIP = " << var("QMAKE_ZIP") << endl; 597 t << "DEF_FILE = " << varList("DEF_FILE") << endl;598 t << "RES_FILE = " << varList("RES_FILE") << endl; // Not on mingw, can't see why not though...599 597 t << "COPY = " << var("QMAKE_COPY") << endl; 600 598 t << "COPY_FILE = " << var("QMAKE_COPY_FILE") << endl; … … 631 629 632 630 writeObjectsPart(t); 631 633 632 634 633 writeExtraCompilerVariables(t); … … 658 657 t << endl << endl; 659 658 660 writeRc FilePart(t);659 writeRcPart(t); 661 660 662 661 writeMakeQmake(t); … … 741 740 } 742 741 743 void Win32MakefileGenerator::writeRcFilePart(QTextStream &t) 742 void Win32MakefileGenerator::writeRcAndDefVariables(QTextStream &t) 743 { 744 t << "DEF_FILE = " << varList("DEF_FILE") << endl; 745 t << "RES_FILE = " << varList("RES_FILE") << endl; // Not on mingw, can't see why not though... 746 } 747 748 void Win32MakefileGenerator::writeRcAndDefPart(QTextStream &t) 744 749 { 745 750 if(!project->values("RC_FILE").isEmpty()) { -
trunk/qmake/generators/win32/winmakefile.h
r2 r38 72 72 virtual QString escapeFilePath(const QString &path) const; 73 73 74 virtual void writeRcFilePart(QTextStream &t); 74 virtual void writeRcAndDefVariables(QTextStream &t); 75 virtual void writeRcAndDefPart(QTextStream &t); 75 76 76 77 int findHighestVersion(const QString &dir, const QString &stem, const QString &ext = QLatin1String("lib"));
Note:
See TracChangeset
for help on using the changeset viewer.