source: trunk/qmake/qmake.pro@ 441

Last change on this file since 441 was 406, checked in by Dmitry A. Kuminov, 16 years ago

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 size: 1.1 KB
Line 
1#This is a project file for building qmake, of course it presents a problem -
2# it is very hard to make qmake build this, when qmake is the thing it builds,
3#once you are boot strapped though, the qmake.pro will offer better coverage of a
4#platform than either of the generic makefiles
5
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}