2008-12-02 12:01:29 +01:00
|
|
|
TEMPLATE = lib
|
|
|
|
|
TARGET = Debugger
|
|
|
|
|
|
|
|
|
|
# CONFIG += single
|
|
|
|
|
include(../../qworkbenchplugin.pri)
|
|
|
|
|
include(../../plugins/projectexplorer/projectexplorer.pri)
|
|
|
|
|
include(../../plugins/find/find.pri)
|
|
|
|
|
include(../../plugins/coreplugin/coreplugin.pri)
|
|
|
|
|
include(../../plugins/texteditor/texteditor.pri)
|
|
|
|
|
include(../../plugins/cpptools/cpptools.pri)
|
|
|
|
|
include(../../libs/cplusplus/cplusplus.pri)
|
2009-02-20 12:33:16 +01:00
|
|
|
include(../../libs/utils/utils.pri)
|
|
|
|
|
INCLUDEPATH += $$PWD/../../libs/utils
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QT += gui network script
|
|
|
|
|
|
2009-03-02 13:08:30 +01:00
|
|
|
HEADERS += \
|
2008-12-02 12:01:29 +01:00
|
|
|
breakhandler.h \
|
|
|
|
|
breakwindow.h \
|
|
|
|
|
debuggerconstants.h \
|
2009-03-02 13:08:30 +01:00
|
|
|
debuggerdialogs.h \
|
2008-12-02 12:01:29 +01:00
|
|
|
debuggermanager.h \
|
|
|
|
|
debuggeroutputwindow.h \
|
|
|
|
|
debuggerplugin.h \
|
|
|
|
|
debuggerrunner.h \
|
|
|
|
|
disassemblerhandler.h \
|
|
|
|
|
disassemblerwindow.h \
|
|
|
|
|
gdbengine.h \
|
|
|
|
|
gdbmi.h \
|
|
|
|
|
idebuggerengine.h \
|
|
|
|
|
imports.h \
|
|
|
|
|
moduleshandler.h \
|
|
|
|
|
moduleswindow.h \
|
2009-01-15 14:47:14 +01:00
|
|
|
outputcollector.h \
|
2008-12-02 12:01:29 +01:00
|
|
|
procinterrupt.h \
|
|
|
|
|
registerhandler.h \
|
|
|
|
|
registerwindow.h \
|
|
|
|
|
scriptengine.h \
|
|
|
|
|
stackhandler.h \
|
|
|
|
|
stackwindow.h \
|
2009-02-17 14:08:49 +01:00
|
|
|
sourcefileswindow.h \
|
2008-12-02 12:01:29 +01:00
|
|
|
threadswindow.h \
|
|
|
|
|
watchhandler.h \
|
|
|
|
|
watchwindow.h
|
2009-01-15 14:19:13 +01:00
|
|
|
|
2009-03-02 13:08:30 +01:00
|
|
|
SOURCES += \
|
2008-12-02 12:01:29 +01:00
|
|
|
breakhandler.cpp \
|
|
|
|
|
breakwindow.cpp \
|
|
|
|
|
breakwindow.h \
|
2009-03-02 13:08:30 +01:00
|
|
|
debuggerdialogs.cpp \
|
2008-12-02 12:01:29 +01:00
|
|
|
debuggermanager.cpp \
|
|
|
|
|
debuggeroutputwindow.cpp \
|
|
|
|
|
debuggerplugin.cpp \
|
|
|
|
|
debuggerrunner.cpp \
|
|
|
|
|
disassemblerhandler.cpp \
|
|
|
|
|
disassemblerwindow.cpp \
|
|
|
|
|
gdbengine.cpp \
|
|
|
|
|
gdbmi.cpp \
|
|
|
|
|
moduleshandler.cpp \
|
|
|
|
|
moduleswindow.cpp \
|
2009-01-15 14:47:14 +01:00
|
|
|
outputcollector.cpp \
|
2008-12-02 12:01:29 +01:00
|
|
|
procinterrupt.cpp \
|
|
|
|
|
registerhandler.cpp \
|
|
|
|
|
registerwindow.cpp \
|
|
|
|
|
scriptengine.cpp \
|
|
|
|
|
stackhandler.cpp \
|
|
|
|
|
stackwindow.cpp \
|
2009-02-17 14:08:49 +01:00
|
|
|
sourcefileswindow.cpp \
|
2008-12-02 12:01:29 +01:00
|
|
|
threadswindow.cpp \
|
|
|
|
|
watchhandler.cpp \
|
|
|
|
|
watchwindow.cpp
|
|
|
|
|
|
|
|
|
|
FORMS += attachexternaldialog.ui \
|
|
|
|
|
attachremotedialog.ui \
|
2009-03-02 13:08:30 +01:00
|
|
|
attachcoredialog.ui \
|
2008-12-02 12:01:29 +01:00
|
|
|
breakbyfunction.ui \
|
|
|
|
|
breakcondition.ui \
|
|
|
|
|
gdboptionpage.ui \
|
|
|
|
|
startexternaldialog.ui \
|
|
|
|
|
|
|
|
|
|
RESOURCES += debugger.qrc
|
|
|
|
|
|
|
|
|
|
false {
|
|
|
|
|
SOURCES += $$PWD/modeltest.cpp
|
|
|
|
|
HEADERS += $$PWD/modeltest.h
|
|
|
|
|
DEFINES += USE_MODEL_TEST=1
|
|
|
|
|
}
|
2009-02-09 11:35:43 +01:00
|
|
|
|
2009-03-03 14:01:58 +01:00
|
|
|
win32 {
|
|
|
|
|
include(win/win.pri)
|
|
|
|
|
CONFIG(cdbdebugger):include(cdb\cdb.pri)
|
|
|
|
|
}
|