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
|
INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD
NHEADERS += \
$$PWD/globalguiconfig.h \
$$PWD/traceitemview.h \
$$PWD/toplevelbase.h \
$$PWD/partselection.h \
$$PWD/functionlistmodel.h \
$$PWD/functionselection.h \
$$PWD/listutils.h \
$$PWD/stackselection.h \
$$PWD/multiview.h \
$$PWD/tabview.h \
$$PWD/callgraphview.h \
$$PWD/treemap.h \
$$PWD/callitem.h \
$$PWD/callview.h \
$$PWD/callmapview.h \
$$PWD/costlistitem.h \
$$PWD/coverageitem.h \
$$PWD/coverageview.h \
$$PWD/eventtypeitem.h \
$$PWD/eventtypeview.h \
$$PWD/instritem.h \
$$PWD/instrview.h \
$$PWD/partgraph.h \
$$PWD/partlistitem.h \
$$PWD/partview.h \
$$PWD/sourceitem.h \
$$PWD/sourceview.h \
$$PWD/stackitem.h
SOURCES += \
$$PWD/globalguiconfig.cpp \
$$PWD/callgraphview.cpp \
$$PWD/callitem.cpp \
$$PWD/callmapview.cpp \
$$PWD/callview.cpp \
$$PWD/costlistitem.cpp \
$$PWD/coverageitem.cpp \
$$PWD/coverageview.cpp \
$$PWD/eventtypeitem.cpp \
$$PWD/eventtypeview.cpp \
$$PWD/functionlistmodel.cpp \
$$PWD/functionselection.cpp \
$$PWD/instritem.cpp \
$$PWD/instrview.cpp \
$$PWD/listutils.cpp \
$$PWD/multiview.cpp \
$$PWD/partgraph.cpp \
$$PWD/partlistitem.cpp \
$$PWD/partselection.cpp \
$$PWD/partview.cpp \
$$PWD/sourceitem.cpp \
$$PWD/sourceview.cpp \
$$PWD/stackitem.cpp \
$$PWD/stackselection.cpp \
$$PWD/tabview.cpp \
$$PWD/toplevelbase.cpp \
$$PWD/traceitemview.cpp \
$$PWD/treemap.cpp
|