diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2011-07-21 16:44:47 +0200 |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2011-07-25 15:46:37 +0200 |
commit | 0ec8817cbe6d00897e458a880d043a3ddfdbf202 (patch) | |
tree | e14f87bff4f2d8619b170d57e8f2bafd5d18abe6 /src/plugins/qtsupport/debugginghelperbuildtask.cpp | |
parent | 938bcae9d6a58a205e78f2965613a14561d6bb32 (diff) | |
download | qt-creator-0ec8817cbe6d00897e458a880d043a3ddfdbf202.tar.gz |
QmlDbgHelper: Fix compilation for Symbian target in SDK
The Symbian3Qt473 folder in the SDK contains a .qmake.cache
with invalid QMAKE_MOC path. Override this in the .pro file.
Also make sure that the .prl file is generated (create_prl was
set in the .qmake.cache)
Change-Id: Ibf905b4d9a8addf1b45a2ee40acdd0134da30e11
Reviewed-on: http://codereview.qt.nokia.com/1977
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
Diffstat (limited to 'src/plugins/qtsupport/debugginghelperbuildtask.cpp')
-rw-r--r-- | src/plugins/qtsupport/debugginghelperbuildtask.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/qtsupport/debugginghelperbuildtask.cpp b/src/plugins/qtsupport/debugginghelperbuildtask.cpp index 2564710c13..7d38af6afc 100644 --- a/src/plugins/qtsupport/debugginghelperbuildtask.cpp +++ b/src/plugins/qtsupport/debugginghelperbuildtask.cpp @@ -165,6 +165,7 @@ bool DebuggingHelperBuildTask::buildDebuggingHelper(QFutureInterface<void> &futu Utils::BuildableHelperLibrary::BuildHelperArguments arguments; arguments.makeCommand = m_makeCommand; arguments.qmakeCommand = m_qmakeCommand; + arguments.qmakeArguments = QStringList() << QLatin1String("-nocache"); arguments.targetMode = m_target; arguments.mkspec = m_mkspec; arguments.environment = m_environment; |