Last change
on this file since 506 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
|
Rev | Line | |
---|
[2] | 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 |
|
---|
[406] | 6 | os2 {
|
---|
| 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
|
---|
[445] | 14 | OBJECTS_DIR = .
|
---|
| 15 | MOC_DIR = .
|
---|
[406] | 16 | }
|
---|
[2] | 17 | DESTDIR = ../bin/
|
---|
| 18 |
|
---|
| 19 | #guts
|
---|
| 20 | VPATH += $$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 \
|
---|
[406] | 24 | $$QT_SOURCE_TREE/src/corelib/io \
|
---|
| 25 | $$QT_SOURCE_TREE/src/script
|
---|
[389] | 26 | INCPATH += generators generators/unix generators/win32 generators/os2 generators/mac \
|
---|
[2] | 27 | $$QT_SOURCE_TREE/include $$QT_SOURCE_TREE/include/QtCore \
|
---|
| 28 | $$QT_SOURCE_TREE/qmake $$QT_SOURCE_TREE/include/QtScript
|
---|
| 29 | include(qmake.pri)
|
---|
| 30 |
|
---|
[389] | 31 | include(../src/qt_targets.pri)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.