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
|
import qbs
QtcPlugin {
name: "QmlProfilerExtension"
Depends { name: "Core" }
Depends { name: "QmlProfiler" }
Depends { name: "Timeline" }
Depends { name: "Qt.quickwidgets" }
Depends { name: "Qt.widgets" }
files: [
"debugmessagesmodel.cpp",
"debugmessagesmodel.h",
"flamegraph.cpp",
"flamegraph.h",
"flamegraph.qrc",
"flamegraphmodel.cpp",
"flamegraphmodel.h",
"flamegraphview.cpp",
"flamegraphview.h",
"inputeventsmodel.cpp",
"inputeventsmodel.h",
"memoryusagemodel.cpp",
"memoryusagemodel.h",
"pixmapcachemodel.cpp",
"pixmapcachemodel.h",
"qmlprofilerextensionconstants.h",
"qmlprofilerextensionplugin.cpp",
"qmlprofilerextensionplugin.h",
"qmlprofilerextension_global.h",
"scenegraphtimelinemodel.cpp",
"scenegraphtimelinemodel.h",
]
}
|