Ignore:
Timestamp:
Feb 5, 2010, 12:42:15 AM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

qmake: Obey TARGET_SHORT when generating install commands for DLLs (which involve the import library which name is affected by TARGET_SHORT).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/generators/os2/gnumake.cpp

    r525 r529  
    636636}
    637637
     638QString GNUMakefileGenerator::getLibTarget()
     639{
     640    if (mode == DLL && !project->isEmpty("QMAKE_RUN_IMPLIB"))
     641        return QString("$(notdir $(TARGET_IMPLIB))");
     642    return Win32MakefileGenerator::getLibTarget();
     643}
     644
    638645QStringList &GNUMakefileGenerator::findDependencies(const QString &file)
    639646{
Note: See TracChangeset for help on using the changeset viewer.