forked from qt-creator/qt-creator
We don't want to dedicate the whole resource file system to QML. Change-Id: I4c7e4af7aeeab00f44c5244e99949a90abb032cf Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
27 lines
568 B
QML
27 lines
568 B
QML
import qbs
|
|
import "../tracingautotest.qbs" as TracingAutotest
|
|
|
|
TracingAutotest {
|
|
name: "FlameGraphView autotest"
|
|
|
|
Depends { name: "Utils" }
|
|
Depends { name: "Qt.quickwidgets" }
|
|
|
|
Group {
|
|
name: "Test sources"
|
|
files: [
|
|
"testflamegraphmodel.h",
|
|
"tst_flamegraphview.cpp"
|
|
]
|
|
}
|
|
|
|
Group {
|
|
name: "Qml Files"
|
|
Qt.core.resourcePrefix: "qt/qml/QtCreator/TstTracingFlameGraphView/"
|
|
fileTags: "qt.core.resource_data"
|
|
files: [
|
|
"TestFlameGraphView.qml",
|
|
]
|
|
}
|
|
}
|