Changeset 86 for trunk/src/qt.pro


Ignore:
Timestamp:
Apr 15, 2006, 6:49:05 PM (19 years ago)
Author:
dmik
Message:
  • Added the internal CONFIG keyword 'qt_official_build' recognition. This keyword is intended to be manually added to the .qmake.conf file located in the installation directory to produce an official binary build of the Qt DLL. When it is present. the DLL and the import library will be named as 'qtXYZNN.dll' (XYZ = version number, NN = subversion number).
  • Added the internal QMAKE variable QMAKE_QT_DLL_TARGET. When 'qt_official_build' is not present in CONFIG, this variable defines a name of the Qt DLL (and the import library) to build. The default name is 'myqt'.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/qt.pro

    r85 r86  
    176176}
    177177
     178shared:os2:qt_official_build {
     179        TARGET = qt$$split(VERSION,.,)
     180        system( echo QMAKE_QT_DLL_TARGET = $$TARGET > ..\.build )
     181} else {
     182        TARGET = $$QMAKE_QT_DLL_TARGET
     183}
     184
    178185!cups:DEFINES += QT_NO_CUPS
    179186
Note: See TracChangeset for help on using the changeset viewer.