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).

Location:
trunk/qmake/generators/os2
Files:
2 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{
  • trunk/qmake/generators/os2/gnumake.h

    r370 r529  
    7272    void processPrlVariable(const QString &var, const QStringList &l);
    7373    void processPrlFiles();
     74    QString getLibTarget();
    7475
    7576    QStringList &findDependencies(const QString &file);
Note: See TracChangeset for help on using the changeset viewer.