diff options
author | axis <qt-info@nokia.com> | 2011-01-07 06:47:12 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2011-01-28 12:24:56 (GMT) |
commit | 0ec421b76066b6016c98a8d2f589db5516bb1a93 (patch) | |
tree | 9c7be27bb1c1f04533103be66caf4bebb87f25ce /qmake/generators/win32 | |
parent | 2c8031cffdfa48e93cb77be657422fc926ec1a29 (diff) | |
download | Qt-0ec421b76066b6016c98a8d2f589db5516bb1a93.zip Qt-0ec421b76066b6016c98a8d2f589db5516bb1a93.tar.gz Qt-0ec421b76066b6016c98a8d2f589db5516bb1a93.tar.bz2 |
Added .lib/.dso dependency tracking to Symbian with MinGW generator.
This is just a mirror of the way the UNIX generator does it. See
commits aaf189b084f52 and bdff51768dfe.
RevBy: Oswald Buddenhagen
Diffstat (limited to 'qmake/generators/win32')
-rw-r--r-- | qmake/generators/win32/mingw_make.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qmake/generators/win32/mingw_make.cpp b/qmake/generators/win32/mingw_make.cpp index ca04e91..7099422 100644 --- a/qmake/generators/win32/mingw_make.cpp +++ b/qmake/generators/win32/mingw_make.cpp @@ -218,6 +218,12 @@ void createRvctObjectScriptFile(const QString &fileName, const QStringList &objL void MingwMakefileGenerator::writeMingwParts(QTextStream &t) { + if (!project->isEmpty("QMAKE_SYMBIAN_SHLIB")) { + t << "vpath %.dso " << project->values("QMAKE_LIBDIR").join(";") << endl; + t << "vpath %.lib " << project->values("QMAKE_LIBDIR").join(";") << endl; + t << "\n\n"; + } + writeStandardParts(t); if (!preCompHeaderOut.isEmpty()) { |