blob: 6ebb9ce43818b04312898e5952aaa7540687d1e5 (
plain)
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
|
import qbs
QtcAutotest {
name: "json autotest"
Depends { name: "bundle" }
Depends { name: "qtcjson" }
consoleApplication: true
cpp.defines: base.filter(function(d) {
return d !== "QT_USE_FAST_OPERATOR_PLUS"
&& d !== "QT_USE_FAST_CONCATENATION";
})
Group {
name: "test data"
files: [
"bom.json",
"test.bjson",
"test.json",
"test2.json",
"test3.json",
]
}
files: ["tst_json.cpp"]
}
|