Changeset 84 for trunk/src/qt.pro


Ignore:
Timestamp:
Apr 15, 2006, 5:52:50 PM (19 years ago)
Author:
dmik
Message:

Preparations to change the build process of Qt on OS/2:

  • OS2/GNUMAKE Backend: when CONFIG contains 'qt' (i.e. the app using Qt is being built), the Qt library defined in qmake.spec is used instead of some tricky procedure to find the highest version at runtime.
  • OS2/GNUMAKE Backend: the VERSION variable is no more used to define a suffix of the DLL being built.
  • 'build_qt' is used to tell QMAKE the Qt library is being built.
  • '-mt' is no more in the Qt library name to indicate a multi-threaded version.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/qt.pro

    r72 r84  
    11# Qt project file
     2#
     3# :mode=makefile:tabSize=8:indentSize=4:noTabs=false:
     4 
    25TEMPLATE        = lib
    36TARGET          = qt
    47embedded:TARGET = qte
    58VERSION         = 3.3.1
     9os2:VERSION     = $${VERSION}.0.6
    610DESTDIR         = $$QMAKE_LIBDIR_QT
    711DLLDESTDIR      = ../bin
     
    157161
    158162thread {
    159         !win32-borland:TARGET = qt-mt
    160         win32-borland:TARGET = qtmt
    161         embedded:TARGET = qte-mt
     163        !os2 {
     164                !win32-borland:TARGET = qt-mt
     165                win32-borland:TARGET = qtmt
     166                embedded:TARGET = qte-mt
     167        }
    162168        DEFINES += QT_THREAD_SUPPORT
    163169}
Note: See TracChangeset for help on using the changeset viewer.