2008-12-02 12:01:29 +01:00
|
|
|
TEMPLATE = lib
|
|
|
|
|
TARGET = Debugger
|
|
|
|
|
|
2009-05-29 10:35:04 +02:00
|
|
|
#DEFINES += QT_USE_FAST_OPERATOR_PLUS
|
|
|
|
|
#DEFINES += QT_USE_FAST_CONCATENATION
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
# CONFIG += single
|
2009-05-08 11:29:56 +02:00
|
|
|
include(../../qtcreatorplugin.pri)
|
2008-12-02 12:01:29 +01:00
|
|
|
include(../../plugins/coreplugin/coreplugin.pri)
|
|
|
|
|
include(../../plugins/cpptools/cpptools.pri)
|
2009-08-12 10:51:25 +02:00
|
|
|
include(../../plugins/find/find.pri)
|
|
|
|
|
include(../../plugins/projectexplorer/projectexplorer.pri)
|
|
|
|
|
include(../../plugins/texteditor/texteditor.pri)
|
2008-12-02 12:01:29 +01:00
|
|
|
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 \
|
2009-08-12 10:51:25 +02:00
|
|
|
debuggeragents.h \
|
2009-03-17 17:00:06 +01:00
|
|
|
debuggeractions.h \
|
2008-12-02 12:01:29 +01:00
|
|
|
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 \
|
2009-06-24 12:31:09 +02:00
|
|
|
debuggertooltip.h \
|
2009-03-25 13:42:47 +01:00
|
|
|
watchutils.h \
|
2008-12-02 12:01:29 +01:00
|
|
|
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 \
|
|
|
|
|
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 \
|
2009-04-17 09:03:32 +02:00
|
|
|
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-08-12 10:51:25 +02:00
|
|
|
debuggeragents.cpp \
|
2009-03-17 17:00:06 +01:00
|
|
|
debuggeractions.cpp \
|
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 \
|
2009-06-24 12:31:09 +02:00
|
|
|
debuggertooltip.cpp \
|
2009-03-25 13:42:47 +01:00
|
|
|
watchutils.cpp \
|
2008-12-02 12:01:29 +01:00
|
|
|
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 \
|
|
|
|
|
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 \
|
2009-04-17 09:03:32 +02:00
|
|
|
watchwindow.cpp \
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
FORMS += attachexternaldialog.ui \
|
2009-03-02 13:08:30 +01:00
|
|
|
attachcoredialog.ui \
|
2009-05-07 16:51:02 +02:00
|
|
|
attachtcfdialog.ui \
|
2008-12-02 12:01:29 +01:00
|
|
|
breakbyfunction.ui \
|
|
|
|
|
breakcondition.ui \
|
2009-03-23 12:28:02 +01:00
|
|
|
dumperoptionpage.ui \
|
2009-04-17 09:03:32 +02:00
|
|
|
commonoptionspage.ui \
|
2008-12-02 12:01:29 +01:00
|
|
|
startexternaldialog.ui \
|
2009-05-06 13:27:11 +02:00
|
|
|
startremotedialog.ui \
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
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-05-19 15:35:18 +02:00
|
|
|
include(cdb/cdb.pri)
|
2009-05-19 15:45:58 +02:00
|
|
|
include(gdb/gdb.pri)
|
2009-05-19 15:38:04 +02:00
|
|
|
include(script/script.pri)
|
2009-05-19 15:45:58 +02:00
|
|
|
include(tcf/tcf.pri)
|
|
|
|
|
|
|
|
|
|
include(shared/shared.pri)
|
2009-04-22 15:06:58 +02:00
|
|
|
|
|
|
|
|
OTHER_FILES += Debugger.pluginspec
|