forked from qt-creator/qt-creator
List respective tr files and while at it shuffle some of the listed files to match common sort order. Change-Id: I73845ad1dae5e8c86d3741067f40b7b2b37e2a6e Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
29 lines
797 B
QML
29 lines
797 B
QML
import qbs
|
|
|
|
QtcPlugin {
|
|
name: "CtfVisualizer"
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "Debugger" }
|
|
Depends { name: "Tracing" }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends {
|
|
name: "Qt"
|
|
submodules: [ "quick", "quickwidgets" ]
|
|
}
|
|
|
|
files: [
|
|
"ctfstatisticsmodel.cpp", "ctfstatisticsmodel.h",
|
|
"ctfstatisticsview.cpp", "ctfstatisticsview.h",
|
|
"ctftimelinemodel.cpp", "ctftimelinemodel.h",
|
|
"ctftracemanager.cpp", "ctftracemanager.h",
|
|
"ctfvisualizerconstants.h",
|
|
"ctfvisualizerplugin.cpp", "ctfvisualizerplugin.h",
|
|
"ctfvisualizertool.cpp", "ctfvisualizertool.h",
|
|
"ctfvisualizertraceview.cpp", "ctfvisualizertraceview.h",
|
|
"ctfvisualizertr.h",
|
|
"../../libs/3rdparty/json/json.hpp",
|
|
]
|
|
}
|