Ignore:
Timestamp:
Jul 13, 2011, 1:59:46 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

qmake: os2/gnumake: Removed unnecessary shortening the import library name for the DLL target when TARGET_SHORT is present. Import libraries are often referenced through the LIBS variable in .pro files and this change makes such referencing work w/o the need to change them to shortened ones for the OS/2 platform. Closes #225. Note: this changeset depends on r885.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/generators/win32/winmakefile.cpp

    r885 r886  
    785785QString Win32MakefileGenerator::getLibTarget()
    786786{
    787     QString target = project->first("TARGET_SHORT");
    788     if (target.isEmpty())
    789         target = project->first("TARGET");
    790     return QString(target + project->first("TARGET_VERSION_EXT") + ".lib");
     787    return QString(project->first("TARGET") + project->first("TARGET_VERSION_EXT") + ".lib");
    791788}
    792789
Note: See TracChangeset for help on using the changeset viewer.