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 |
|
---|
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
|
---|
14 | }
|
---|
|
---|