blob: da2dd211758df23e38d387026801b79ae6856f76 (
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
|
TEMPLATE = lib
TARGET = Debugger
# DEFINES += QT_USE_FAST_OPERATOR_PLUS
# DEFINES += QT_USE_FAST_CONCATENATION
# CONFIG += single
include(../../qtcreatorplugin.pri)
include(debugger_dependencies.pri)
DEFINES += DEBUGGER_LIBRARY
INCLUDEPATH += $$PWD/../../libs/utils
QT += gui \
network \
script
HEADERS += breakhandler.h \
breakwindow.h \
debuggeragents.h \
debuggeractions.h \
debuggerconstants.h \
debuggerdialogs.h \
debuggermanager.h \
debugger_global.h \
debuggeroutputwindow.h \
debuggerplugin.h \
debuggerrunner.h \
debuggertooltip.h \
debuggerstringutils.h \
watchutils.h \
idebuggerengine.h \
imports.h \
moduleshandler.h \
moduleswindow.h \
outputcollector.h \
procinterrupt.h \
registerhandler.h \
registerwindow.h \
stackhandler.h \
stackwindow.h \
sourcefileswindow.h \
threadswindow.h \
watchhandler.h \
watchwindow.h \
name_demangler.h
SOURCES += breakhandler.cpp \
breakwindow.cpp \
breakwindow.h \
debuggeragents.cpp \
debuggeractions.cpp \
debuggerdialogs.cpp \
debuggermanager.cpp \
debuggeroutputwindow.cpp \
debuggerplugin.cpp \
debuggerrunner.cpp \
debuggertooltip.cpp \
watchutils.cpp \
moduleshandler.cpp \
moduleswindow.cpp \
outputcollector.cpp \
procinterrupt.cpp \
registerhandler.cpp \
registerwindow.cpp \
stackhandler.cpp \
stackwindow.cpp \
sourcefileswindow.cpp \
threadswindow.cpp \
watchhandler.cpp \
watchwindow.cpp \
name_demangler.cpp
FORMS += attachexternaldialog.ui \
attachcoredialog.ui \
breakbyfunction.ui \
breakcondition.ui \
dumperoptionpage.ui \
commonoptionspage.ui \
startexternaldialog.ui \
startremotedialog.ui
RESOURCES += debugger.qrc
false {
SOURCES += $$PWD/modeltest.cpp
HEADERS += $$PWD/modeltest.h
DEFINES += USE_MODEL_TEST=1
}
include(cdb/cdb.pri)
include(gdb/gdb.pri)
include(script/script.pri)
include(shared/shared.pri)
OTHER_FILES += Debugger.pluginspec
|