Files
qt-creator/share/qtcreator/qml/qmljsdebugger/qmljsdebugger.pro
Kai Koehne 6507f5ff83 QmlObserver: Allow to compile it again in source
Make it possible (again) to compile qmlobserver in share/qtcreator.
However, build artifacts in there might result in a malfunctioning
qtc-qmlobserver!

Reviewed-by: Thorbjorn Lindeijer
2011-02-21 16:40:53 +01:00

19 lines
357 B
Prolog

# This file is part of Qt Creator
# It enables debugging of Qt Quick applications
TEMPLATE = lib
CONFIG += staticlib
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)