diff options
author | axis <qt-info@nokia.com> | 2010-12-21 09:46:26 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-12-21 10:01:41 (GMT) |
commit | 2a340b56c9935ee25bbd0b750d1239cb14051b27 (patch) | |
tree | 594039b8d82af450312e8cfa0eba7a235d33a51d /mkspecs/common | |
parent | ee5c961ab564d9eb7e1902aae384f6d3ac9242e4 (diff) | |
download | Qt-2a340b56c9935ee25bbd0b750d1239cb14051b27.zip Qt-2a340b56c9935ee25bbd0b750d1239cb14051b27.tar.gz Qt-2a340b56c9935ee25bbd0b750d1239cb14051b27.tar.bz2 |
Fixed PREPEND_INCLUDEPATH being executed too early.
It used to be carried out inside qt.prf, but was moved to
default_post.prf. However, since qt.prf is executed after
default_post.prf, it would still prepend its own include paths at the
very front, which is wrong.
Fixed by introducing a new feature profile for PREPEND_INCLUDEPATH,
which is run after qt.prf (features in $$CONFIG are executed in
reverse order).
RevBy: Miikka Heikkinen
Diffstat (limited to 'mkspecs/common')
-rw-r--r-- | mkspecs/common/symbian/symbian.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/common/symbian/symbian.conf b/mkspecs/common/symbian/symbian.conf index b8e1d26..8c79d8b 100644 --- a/mkspecs/common/symbian/symbian.conf +++ b/mkspecs/common/symbian/symbian.conf @@ -3,7 +3,7 @@ # TEMPLATE = app -CONFIG += qt warn_on release incremental link_prl sis_targets run_on_phone +CONFIG += prepend_includepath qt warn_on release incremental link_prl sis_targets run_on_phone QT += core gui QMAKE_INCREMENTAL_STYLE = sublib |