source: trunk/qmake/qmake.pro@ 513

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

qmake: Revert to a static build that doesn't depend on Qt DLLs to simplify the build process (other tools like moc.exe are static too so it makes even less sense to put the dependency on one of them).

File size: 989 bytes
RevLine 
[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
[513]6CONFIG += console bootstrap
7CONFIG -= qt shared app_bundle uic
8DEFINES += QT_BUILD_QMAKE QT_BOOTSTRAPPED
[2]9DESTDIR = ../bin/
10
[513]11OBJECTS_DIR = .
12MOC_DIR = .
13
[2]14#guts
15VPATH += $$QT_SOURCE_TREE/src/corelib/global \
16 $$QT_SOURCE_TREE/src/corelib/tools \
17 $$QT_SOURCE_TREE/src/corelib/kernel \
18 $$QT_SOURCE_TREE/src/corelib/plugin \
[406]19 $$QT_SOURCE_TREE/src/corelib/io \
20 $$QT_SOURCE_TREE/src/script
[389]21INCPATH += generators generators/unix generators/win32 generators/os2 generators/mac \
[2]22 $$QT_SOURCE_TREE/include $$QT_SOURCE_TREE/include/QtCore \
23 $$QT_SOURCE_TREE/qmake $$QT_SOURCE_TREE/include/QtScript
24include(qmake.pri)
25
[389]26include(../src/qt_targets.pri)
Note: See TracBrowser for help on using the repository browser.