Changeset 561 for trunk/projects.pro
- Timestamp:
- Feb 11, 2010, 11:19:06 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/vendor/nokia/qt/4.6.1 merged eligible /branches/vendor/nokia/qt/current merged eligible /branches/vendor/trolltech/qt/current 3-149
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/projects.pro
r513 r561 9 9 10 10 isEmpty(QT_BUILD_PARTS) { #defaults 11 QT_BUILD_PARTS = libs tools examples demos docs translations 11 symbian { 12 QT_BUILD_PARTS = libs tools examples demos 13 } else { 14 QT_BUILD_PARTS = libs tools examples demos docs translations 15 } 12 16 } else { #make sure the order makes sense 17 contains(QT_BUILD_PARTS, translations) { 18 QT_BUILD_PARTS -= translations 19 QT_BUILD_PARTS = translations $$QT_BUILD_PARTS 20 } 13 21 contains(QT_BUILD_PARTS, tools) { 14 22 QT_BUILD_PARTS -= tools … … 38 46 contains(QT_BUILD_PARTS, tools):include(doc/doc.pri) 39 47 } else:isEqual(PROJECT, translations) { 40 contains(QT_BUILD_PARTS, tools):include(translations/translations.pri) 48 contains(QT_BUILD_PARTS, tools) { 49 include(translations/translations.pri) # ts targets 50 } else { 51 !wince*:!symbian:SUBDIRS += tools/linguist/lrelease 52 } 53 SUBDIRS += translations # qm build step 41 54 } else:isEqual(PROJECT, qmake) { 42 55 SUBDIRS += qmake … … 46 59 } 47 60 48 confclean.depends += clean61 !symbian: confclean.depends += clean 49 62 confclean.commands = 50 unix {63 unix:!symbian { 51 64 confclean.commands += (cd config.tests/unix/stl && $(MAKE) distclean); \ 52 65 (cd config.tests/unix/endian && $(MAKE) distclean); \ … … 62 75 (cd config.tests/unix/nis && $(MAKE) distclean); \ 63 76 (cd config.tests/unix/nix && $(MAKE) distclean); \ 77 (cd config.tests/unix/iodbc && $(MAKE) distclean); \ 64 78 (cd config.tests/unix/odbc && $(MAKE) distclean); \ 65 79 (cd config.tests/unix/oci && $(MAKE) distclean); \ … … 96 110 -$(DEL_FILE) .qmake.cache $$escape_expand(\n\t) \ 97 111 (cd qmake && $(MAKE) distclean) 112 } 113 symbian { 114 confclean.depends += distclean 115 confclean.commands += \ 116 (cd src\tools\moc && $(MAKE) distclean) $$escape_expand(\n\t) \ 117 (cd src\tools\rcc && $(MAKE) distclean) $$escape_expand(\n\t) \ 118 (cd src\tools\uic && $(MAKE) distclean) $$escape_expand(\n\t) \ 119 -$(DEL_FILE) src\corelib\global\qconfig.h $$escape_expand(\n\t) \ 120 -$(DEL_FILE) src\corelib\global\qconfig.cpp $$escape_expand(\n\t) \ 121 -$(DEL_FILE) mkspecs\qconfig.pri $$escape_expand(\n\t) \ 122 -$(DEL_FILE) .qmake.cache $$escape_expand(\n\t) \ 123 (cd qmake && $(MAKE) distclean) 124 98 125 } 99 126 QMAKE_EXTRA_TARGETS += confclean … … 136 163 } 137 164 138 !win32:contains(QT_CONFIG, qtusagereporter) {139 usagereporter.path=$$[QT_INSTALL_BINS]140 usagereporter.files=$$QT_BUILD_TREE/bin/qtusagereporter141 INSTALLS += usagereporter142 }
Note:
See TracChangeset
for help on using the changeset viewer.