forked from qt-creator/qt-creator
Copy over the private header files to creator source tree, along the lines of the what the designer plugin does. Reviewed-by: Christiaan Janssen
36 lines
861 B
Plaintext
36 lines
861 B
Plaintext
QT += declarative script
|
|
INCLUDEPATH += $$PWD/include
|
|
DEPENDPATH += $$PWD $$PWD/include editor $$PWD/qt-private
|
|
|
|
contains(CONFIG, dll) {
|
|
DEFINES += BUILD_QMLJSDEBUGGER_LIB
|
|
} else {
|
|
DEFINES += BUILD_QMLJSDEBUGGER_STATIC_LIB
|
|
}
|
|
|
|
## Input
|
|
HEADERS += \
|
|
include/jsdebuggeragent.h \
|
|
include/qmljsdebugger_global.h \
|
|
include/qt_private/qdeclarativedebughelper_p.h \
|
|
include/qt_private/qdeclarativedebugservice_p.h
|
|
|
|
SOURCES += \
|
|
jsdebuggeragent.cpp
|
|
|
|
contains(DEFINES, QMLOBSERVER) {
|
|
include($$PWD/editor/editor.pri)
|
|
|
|
HEADERS += \
|
|
include/qdeclarativeviewobserver.h \
|
|
include/qdeclarativeobserverservice.h \
|
|
include/qmlobserverconstants.h \
|
|
qdeclarativeviewobserver_p.h
|
|
|
|
SOURCES += \
|
|
qdeclarativeviewobserver.cpp \
|
|
qdeclarativeobserverservice.cpp
|
|
}
|
|
|
|
OTHER_FILES += qmljsdebugger.pri
|