forked from qt-creator/qt-creator
A minimal application that displays the tracing view with some dummy data. Change-Id: Ie564a3be017731313659aef7958138613b0bb94d Reviewed-by: Christian Stenger <christian.stenger@qt.io>
17 lines
294 B
QML
17 lines
294 B
QML
import "../common/common.qbs" as Common
|
|
|
|
CppApplication {
|
|
name: "Manual Test Tracing"
|
|
|
|
Depends { name: "Qt.quick" }
|
|
Depends { name: "Tracing" }
|
|
Depends { name: "Utils" }
|
|
Depends { name: "Core" }
|
|
|
|
files: [
|
|
"tst_manual_widgets_tracing.cpp",
|
|
]
|
|
|
|
Common {}
|
|
}
|