source: trunk/qmake/qmake.pro@ 507

Last change on this file since 507 was 445, checked in by Dmitry A. Kuminov, 15 years ago

qmake: Don't create extra temporary directories in non-bootstrapped build (everything is in tmp now).

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