forked from qt-creator/qt-creator
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>
19 lines
368 B
Prolog
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)
|