forked from qt-creator/qt-creator
23 lines
373 B
QML
23 lines
373 B
QML
|
|
import qbs
|
||
|
|
|
||
|
|
QtcAutotest {
|
||
|
|
name: "json autotest"
|
||
|
|
Depends { name: "bundle" }
|
||
|
|
Depends { name: "qtcjson" }
|
||
|
|
|
||
|
|
bundle.isBundle: false
|
||
|
|
|
||
|
|
Group {
|
||
|
|
name: "test data"
|
||
|
|
files: [
|
||
|
|
"bom.json",
|
||
|
|
"test.bjson",
|
||
|
|
"test.json",
|
||
|
|
"test2.json",
|
||
|
|
"test3.json",
|
||
|
|
]
|
||
|
|
}
|
||
|
|
|
||
|
|
files: ["tst_json.cpp"]
|
||
|
|
}
|