blob: 3d364762c64b080d57c9b7ce5ad9f7bb60e82440 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
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)
include(../../libs/utils/utils.pri)
INCLUDEPATH += $$PWD/../../libs/utils
QT += gui network script
HEADERS += \
breakhandler.h \
breakwindow.h \
debuggeractions.h \
debuggerconstants.h \
debuggerdialogs.h \
debuggermanager.h \
debuggeroutputwindow.h \
debuggerplugin.h \
debuggerrunner.h \
disassemblerhandler.h \
disassemblerwindow.h \
watchutils.h \
gdbengine.h \
gdbmi.h \
idebuggerengine.h \
imports.h \
moduleshandler.h \
moduleswindow.h \
outputcollector.h \
procinterrupt.h \
registerhandler.h \
registerwindow.h \
scriptengine.h \
stackhandler.h \
stackwindow.h \
sourcefileswindow.h \
threadswindow.h \
watchhandler.h \
watchwindow.h \
gdboptionspage.h
SOURCES += \
breakhandler.cpp \
breakwindow.cpp \
breakwindow.h \
debuggeractions.cpp \
debuggerdialogs.cpp \
debuggermanager.cpp \
debuggeroutputwindow.cpp \
debuggerplugin.cpp \
debuggerrunner.cpp \
disassemblerhandler.cpp \
disassemblerwindow.cpp \
watchutils.cpp \
gdbengine.cpp \
gdbmi.cpp \
moduleshandler.cpp \
moduleswindow.cpp \
outputcollector.cpp \
procinterrupt.cpp \
registerhandler.cpp \
registerwindow.cpp \
scriptengine.cpp \
stackhandler.cpp \
stackwindow.cpp \
sourcefileswindow.cpp \
threadswindow.cpp \
watchhandler.cpp \
watchwindow.cpp \
gdboptionspage.cpp
FORMS += attachexternaldialog.ui \
attachremotedialog.ui \
attachcoredialog.ui \
breakbyfunction.ui \
breakcondition.ui \
dumperoptionpage.ui \
gdboptionspage.ui \
commonoptionspage.ui \
startexternaldialog.ui \
RESOURCES += debugger.qrc
false {
SOURCES += $$PWD/modeltest.cpp
HEADERS += $$PWD/modeltest.h
DEFINES += USE_MODEL_TEST=1
}
win32 {
include(win/win.pri)
include(cdb/cdb.pri)
}
OTHER_FILES += Debugger.pluginspec
|