Files
qt-creator/share/qtcreator/qml/qmljsdebugger/qmljsdebugger.pro
Kai Koehne 0ec8817cbe 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>
2011-07-25 15:46:37 +02:00

19 lines
368 B
Prolog

# This file is part of Qt Creator
# It enables debugging of Qt Quick applications
TEMPLATE = lib
CONFIG += staticlib create_prl
QT += declarative script
DEFINES += BUILD_QMLJSDEBUGGER_STATIC_LIB
unix:QMAKE_CXXFLAGS_DEBUG += -O3
DESTDIR = $$PWD
TARGET=QmlJSDebugger
CONFIG(debug, debug|release) {
windows:TARGET=QmlJSDebuggerd
}
include(qmljsdebugger-src.pri)