blob: f5df7d4d128c0f530e66118754b15a86a24bb7c0 (
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
|
TEMPLATE = lib
TARGET = Valgrind
include(../../qtcreatorplugin.pri)
include(valgrind_dependencies.pri)
include(callgrind/callgrind.pri)
include(memcheck/memcheck.pri)
include(xmlprotocol/xmlprotocol.pri)
QT *= network
INCLUDEPATH *= $$PWD
HEADERS += \
valgrindplugin.h \
valgrindengine.h \
valgrindconfigwidget.h \
valgrindsettings.h \
valgrindrunner.h \
valgrindprocess.h \
callgrindcostdelegate.h \
callgrindcostview.h \
callgrindhelper.h \
callgrindnamedelegate.h \
callgrindtool.h \
callgrindvisualisation.h \
callgrindengine.h \
workarounds.h \
callgrindtextmark.h \
\
memchecktool.h \
memcheckengine.h \
memcheckerrorview.h \
suppressiondialog.h
SOURCES += \
valgrindplugin.cpp \
valgrindengine.cpp \
valgrindconfigwidget.cpp \
valgrindsettings.cpp \
valgrindrunner.cpp \
valgrindprocess.cpp \
\
callgrindcostdelegate.cpp \
callgrindcostview.cpp \
callgrindhelper.cpp \
callgrindnamedelegate.cpp \
callgrindtool.cpp \
callgrindvisualisation.cpp \
callgrindengine.cpp \
workarounds.cpp \
callgrindtextmark.cpp \
memchecktool.cpp \
memcheckengine.cpp \
memcheckerrorview.cpp \
suppressiondialog.cpp
FORMS += \
valgrindconfigwidget.ui
|