2010-07-29 12:53:26 +02:00
|
|
|
QT += declarative script
|
2010-07-29 12:15:55 +02:00
|
|
|
INCLUDEPATH += $$PWD $$PWD/include editor
|
|
|
|
|
DEPENDPATH += $$PWD $$PWD/include editor
|
|
|
|
|
|
|
|
|
|
contains(CONFIG, dll) {
|
|
|
|
|
DEFINES += BUILD_QMLJSDEBUGGER_LIB
|
|
|
|
|
} else {
|
|
|
|
|
DEFINES += BUILD_QMLJSDEBUGGER_STATIC_LIB
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-17 13:46:26 +02:00
|
|
|
include($$PWD/private_headers.pri)
|
2010-07-29 12:15:55 +02:00
|
|
|
|
|
|
|
|
include($$PWD/editor/editor.pri)
|
|
|
|
|
|
|
|
|
|
## Input
|
|
|
|
|
HEADERS += \
|
|
|
|
|
include/jsdebuggeragent.h \
|
2010-09-14 13:39:32 +02:00
|
|
|
include/qdeclarativeviewobserver.h \
|
2010-09-16 12:29:06 +02:00
|
|
|
include/qdeclarativeobserverservice.h \
|
2010-09-16 16:43:22 +02:00
|
|
|
include/qmlobserverconstants.h \
|
2010-07-29 12:15:55 +02:00
|
|
|
include/qmljsdebugger_global.h \
|
2010-09-14 13:39:32 +02:00
|
|
|
qdeclarativeviewobserver_p.h
|
2010-07-29 12:15:55 +02:00
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
jsdebuggeragent.cpp \
|
2010-09-14 13:39:32 +02:00
|
|
|
qdeclarativeviewobserver.cpp \
|
2010-09-16 12:29:06 +02:00
|
|
|
qdeclarativeobserverservice.cpp
|
2010-07-29 12:15:55 +02:00
|
|
|
|
|
|
|
|
OTHER_FILES += qmljsdebugger.pri
|