Files
qt-creator/share/qtcreator/qml/qmljsdebugger/qmljsdebugger-lib.pri
Kai Koehne b7decc1356 QmlJSDebug: Fix compilation for debug builds on Windows
Make sure we pick up the debugger version of qmljsdebugger library.
2011-02-22 17:10:43 +01:00

12 lines
254 B
Plaintext

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