Changeset 406 for trunk/qmake/qmake.pro


Ignore:
Timestamp:
Dec 10, 2009, 12:56:17 AM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

qmake: Build qmake second time after building all DLLs using its .pro and link it to Qt DLLs on OS/2 (this became possible after the fix in #405). This greatly reduces its size and finally fixes the national characters in the date printed in the generarted Makefile headers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/qmake.pro

    r389 r406  
    44#platform than either of the generic makefiles
    55
    6 CONFIG += console bootstrap
    7 CONFIG -= qt shared app_bundle uic
    8 DEFINES += QT_BUILD_QMAKE QT_BOOTSTRAPPED
     6os2 {
     7  # using this .pro, we build non-bootstrapped qmake which links to Qt DLLs
     8  CONFIG += console
     9  CONFIG -= uic
     10} else {
     11  CONFIG += console bootstrap
     12  CONFIG -= qt shared app_bundle uic
     13  DEFINES += QT_BUILD_QMAKE QT_BOOTSTRAPPED
     14}
    915DESTDIR = ../bin/
    1016
     
    1723         $$QT_SOURCE_TREE/src/corelib/kernel \
    1824         $$QT_SOURCE_TREE/src/corelib/plugin \
    19         $$QT_SOURCE_TREE/src/corelib/io \
    20         $$QT_SOURCE_TREE/src/script
     25        $$QT_SOURCE_TREE/src/corelib/io \
     26        $$QT_SOURCE_TREE/src/script
    2127INCPATH += generators generators/unix generators/win32 generators/os2 generators/mac \
    2228           $$QT_SOURCE_TREE/include $$QT_SOURCE_TREE/include/QtCore \
Note: See TracChangeset for help on using the changeset viewer.