Skip to content
Snippets Groups Projects
debugger.pro 2.67 KiB
Newer Older
con's avatar
con committed
TEMPLATE = lib
TARGET = Debugger

ck's avatar
ck committed
# DEFINES += QT_USE_FAST_OPERATOR_PLUS
# DEFINES += QT_USE_FAST_CONCATENATION
con's avatar
con committed
# CONFIG += single
include(../../qtcreatorplugin.pri)
include(debugger_dependencies.pri)
dt's avatar
dt committed
include(../../private_headers.pri)
INCLUDEPATH += $$PWD/../../libs/utils
ck's avatar
ck committed
QT += gui \
    network \
    script
HEADERS += breakhandler.h \
con's avatar
con committed
    breakwindow.h \
    breakpoint.h \
    debuggeragents.h \
    debuggeractions.h \
con's avatar
con committed
    debuggerconstants.h \
    debuggerdialogs.h \
    debuggerengine.h \
con's avatar
con committed
    debuggeroutputwindow.h \
    debuggerplugin.h \
    debuggerrunner.h \
    debuggertooltip.h \
con's avatar
con committed
    moduleshandler.h \
    moduleswindow.h \
con's avatar
con committed
    procinterrupt.h \
    registerhandler.h \
    registerwindow.h \
    stackframe.h \
con's avatar
con committed
    stackhandler.h \
    stackwindow.h \
    snapshothandler.h \
    snapshotwindow.h \
    sourcefileshandler.h \
    sourcefileswindow.h \
con's avatar
con committed
    threadswindow.h \
    watchhandler.h \
    name_demangler.h \
    debuggeruiswitcher.h \
    debuggermainwindow.h \
    threadshandler.h
ck's avatar
ck committed
SOURCES += breakhandler.cpp \
con's avatar
con committed
    breakwindow.cpp \
    breakwindow.h \
    debuggeragents.cpp \
    debuggeractions.cpp \
    debuggerdialogs.cpp \
    debuggerengine.cpp \
con's avatar
con committed
    debuggeroutputwindow.cpp \
    debuggerplugin.cpp \
    debuggerrunner.cpp \
    debuggertooltip.cpp \
con's avatar
con committed
    moduleshandler.cpp \
    moduleswindow.cpp \
con's avatar
con committed
    procinterrupt.cpp \
    registerhandler.cpp \
    registerwindow.cpp \
    snapshothandler.cpp \
    snapshotwindow.cpp \
con's avatar
con committed
    stackhandler.cpp \
    stackwindow.cpp \
    sourcefileshandler.cpp \
    sourcefileswindow.cpp \
con's avatar
con committed
    threadswindow.cpp \
con's avatar
con committed
    watchhandler.cpp \
    name_demangler.cpp \
    debuggeruiswitcher.cpp \
    debuggermainwindow.cpp \
    threadshandler.cpp \
    stackframe.cpp
con's avatar
con committed
FORMS += attachexternaldialog.ui \
    attachcoredialog.ui \
hjk's avatar
hjk committed
    attachtcfdialog.ui \
con's avatar
con committed
    breakbyfunction.ui \
    breakcondition.ui \
hjk's avatar
hjk committed
    dumperoptionpage.ui \
con's avatar
con committed
    startexternaldialog.ui \
ck's avatar
ck committed
    startremotedialog.ui
con's avatar
con committed
RESOURCES += debugger.qrc
false {
ck's avatar
ck committed
    SOURCES += $$PWD/modeltest.cpp
    HEADERS += $$PWD/modeltest.h
    DEFINES += USE_MODEL_TEST=1
con's avatar
con committed
}
win32 {
include(../../shared/registryaccess/registryaccess.pri)
HEADERS += registerpostmortemaction.h
SOURCES += registerpostmortemaction.cpp
LIBS  *= -lole32 \
    -lshell32
}
include(gdb/gdb.pri)
include(script/script.pri)
hjk's avatar
hjk committed
include(pdb/pdb.pri)
include(qml/qml.pri)
hjk's avatar
hjk committed
include(tcf/tcf.pri)
include(shared/shared.pri)
OTHER_FILES += Debugger.pluginspec