source: trunk/qmake/qmake.pro@ 441

Last change on this file since 441 was 406, checked in by Dmitry A. Kuminov, 15 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}
15DESTDIR = ../bin/
16
17OBJECTS_DIR = .
18MOC_DIR = .
19
20#guts
21VPATH += $$QT_SOURCE_TREE/src/corelib/global \
22 $$QT_SOURCE_TREE/src/corelib/tools \
23 $$QT_SOURCE_TREE/src/corelib/kernel \
24 $$QT_SOURCE_TREE/src/corelib/plugin \
25 $$QT_SOURCE_TREE/src/corelib/io \
26 $$QT_SOURCE_TREE/src/script
27INCPATH += generators generators/unix generators/win32 generators/os2 generators/mac \
28 $$QT_SOURCE_TREE/include $$QT_SOURCE_TREE/include/QtCore \
29 $$QT_SOURCE_TREE/qmake $$QT_SOURCE_TREE/include/QtScript
30include(qmake.pri)
31
32include(../src/qt_targets.pri)
Note: See TracBrowser for help on using the repository browser.