Files
qt-creator/share/qtcreator/qml/qmljsdebugger/qmljsdebugger-lib.pri
Kai Koehne 304b3c881c QtQuickApp: Remove QMLJSDEBUGGER define from custom .pro file
The qmljsdebugger-lib.pri is only included in 2.2 if the user explicitly
selected it in the Project Settings.

Reviewed-by: Christiaan Janssen
2011-03-07 16:35:27 +01:00

14 lines
287 B
Plaintext

# This file is part of Qt Creator
# It enables debugging of Qt Quick applications
QT += declarative script
INCLUDEPATH += $$PWD/include
DEBUGLIB=QmlJSDebugger
CONFIG(debug, debug|release) {
windows:DEBUGLIB = QmlJSDebuggerd
}
LIBS += -L$$PWD -l$$DEBUGLIB
DEFINES += QMLJSDEBUGGER