Changeset 561 for trunk/projects.pro


Ignore:
Timestamp:
Feb 11, 2010, 11:19:06 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.1 sources.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/projects.pro

    r513 r561  
    99
    1010isEmpty(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    }
    1216} 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   }
    1321   contains(QT_BUILD_PARTS, tools) {
    1422       QT_BUILD_PARTS -= tools
     
    3846       contains(QT_BUILD_PARTS, tools):include(doc/doc.pri)
    3947    } 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
    4154    } else:isEqual(PROJECT, qmake) {
    4255       SUBDIRS += qmake
     
    4659}
    4760
    48 confclean.depends += clean
     61!symbian: confclean.depends += clean
    4962confclean.commands =
    50 unix {
     63unix:!symbian {
    5164  confclean.commands += (cd config.tests/unix/stl && $(MAKE) distclean); \
    5265                        (cd config.tests/unix/endian && $(MAKE) distclean); \
     
    6275                        (cd config.tests/unix/nis && $(MAKE) distclean); \
    6376                        (cd config.tests/unix/nix && $(MAKE) distclean); \
     77                        (cd config.tests/unix/iodbc && $(MAKE) distclean); \
    6478                        (cd config.tests/unix/odbc && $(MAKE) distclean); \
    6579                        (cd config.tests/unix/oci && $(MAKE) distclean); \
     
    96110                        -$(DEL_FILE) .qmake.cache $$escape_expand(\n\t) \
    97111                        (cd qmake && $(MAKE) distclean)
     112}
     113symbian {
     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           
    98125}
    99126QMAKE_EXTRA_TARGETS += confclean
     
    136163}
    137164
    138 !win32:contains(QT_CONFIG, qtusagereporter) {
    139     usagereporter.path=$$[QT_INSTALL_BINS]
    140     usagereporter.files=$$QT_BUILD_TREE/bin/qtusagereporter
    141     INSTALLS += usagereporter
    142 }
Note: See TracChangeset for help on using the changeset viewer.