Changeset 513
- Timestamp:
- Feb 4, 2010, 1:25:34 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/projects.pro ¶
r413 r513 15 15 QT_BUILD_PARTS = tools $$QT_BUILD_PARTS 16 16 } 17 os2:contains(QT_BUILD_PARTS, qmake) {18 # non-bootstrapped qmake needs libs so don't put it before19 QT_BUILD_PARTS -= qmake20 QT_BUILD_PARTS = qmake $$QT_BUILD_PARTS21 }22 17 contains(QT_BUILD_PARTS, libs) { 23 18 QT_BUILD_PARTS -= libs 24 19 QT_BUILD_PARTS = libs $$QT_BUILD_PARTS 25 20 } 26 !os2:contains(QT_BUILD_PARTS, qmake) {21 contains(QT_BUILD_PARTS, qmake) { 27 22 QT_BUILD_PARTS -= qmake 28 23 QT_BUILD_PARTS = qmake $$QT_BUILD_PARTS … … 45 40 contains(QT_BUILD_PARTS, tools):include(translations/translations.pri) 46 41 } else:isEqual(PROJECT, qmake) { 47 os2:SUBDIRS += qmake42 SUBDIRS += qmake 48 43 } else { 49 44 message(Unknown PROJECT: $$PROJECT) -
TabularUnified trunk/qmake/Makefile.os2-g++ ¶
r406 r513 38 38 endif 39 39 40 OBJECTS_DIR = release-bootstrap 40 # make sure the output dir matches the one in qmake.pro 41 OBJECTS_DIR = release-shared 41 42 42 43 # qmake code -
TabularUnified trunk/qmake/qmake.pro ¶
r445 r513 4 4 #platform than either of the generic makefiles 5 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 OBJECTS_DIR = . 15 MOC_DIR = . 16 } 6 CONFIG += console bootstrap 7 CONFIG -= qt shared app_bundle uic 8 DEFINES += QT_BUILD_QMAKE QT_BOOTSTRAPPED 17 9 DESTDIR = ../bin/ 10 11 OBJECTS_DIR = . 12 MOC_DIR = . 18 13 19 14 #guts
Note:
See TracChangeset
for help on using the changeset viewer.