Skip to content
Snippets Groups Projects
Commit 0ec8817c authored by Kai Koehne's avatar Kai Koehne
Browse files

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: default avatarQt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: default avatarAlessandro Portale <alessandro.portale@nokia.com>
parent 938bcae9
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
# It enables debugging of Qt Quick applications
TEMPLATE = lib
CONFIG += staticlib
CONFIG += staticlib create_prl
QT += declarative script
DEFINES += BUILD_QMLJSDEBUGGER_STATIC_LIB
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment