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)
|
|
|
|
|
|
|
|
|
|
# DEFINES += QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII
|
|
|
|
|
QT += gui network script
|
|
|
|
|
|
2008-12-09 12:27:55 +01:00
|
|
|
HEADERS += attachexternaldialog.h \
|
2008-12-02 12:01:29 +01:00
|
|
|
attachremotedialog.h \
|
|
|
|
|
breakhandler.h \
|
|
|
|
|
breakwindow.h \
|
|
|
|
|
debuggerconstants.h \
|
|
|
|
|
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 \
|
|
|
|
|
startexternaldialog.h \
|
|
|
|
|
threadswindow.h \
|
|
|
|
|
watchhandler.h \
|
|
|
|
|
watchwindow.h
|
2009-01-15 14:19:13 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
SOURCES += attachexternaldialog.cpp \
|
|
|
|
|
attachremotedialog.cpp \
|
|
|
|
|
breakhandler.cpp \
|
|
|
|
|
breakwindow.cpp \
|
|
|
|
|
breakwindow.h \
|
|
|
|
|
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 \
|
|
|
|
|
startexternaldialog.cpp \
|
|
|
|
|
threadswindow.cpp \
|
|
|
|
|
watchhandler.cpp \
|
|
|
|
|
watchwindow.cpp
|
|
|
|
|
|
|
|
|
|
FORMS += attachexternaldialog.ui \
|
|
|
|
|
attachremotedialog.ui \
|
|
|
|
|
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-02-09 13:07:38 +01:00
|
|
|
win32 {
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
cdbdebugengine.h \
|
|
|
|
|
cdbdebugeventcallback.h \
|
|
|
|
|
cdbdebugoutput.h
|
|
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
cdbdebugengine.cpp \
|
|
|
|
|
cdbdebugeventcallback.cpp \
|
|
|
|
|
cdbdebugoutput.cpp
|
|
|
|
|
|
|
|
|
|
LIBS += dbgeng.lib
|
|
|
|
|
|
2009-02-09 11:35:43 +01:00
|
|
|
}
|
|
|
|
|
|