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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
"module": "positioning",
"testDir": "../../config.tests",
"libraries": {
"gypsy": {
"label": "Gypsy",
"test": "gypsy",
"sources": [
{ "type": "pkgConfig", "args": "gypsy gconf-2.0" }
]
}
},
"tests": {
"winrt_geolocation": {
"label": "WinRT Geolocation API",
"type": "compile",
"test": "winrt"
}
},
"features": {
"gypsy": {
"label": "Gypsy GPS Daemon",
"condition": "libs.gypsy",
"output": [ "privateFeature" ]
},
"winrt_geolocation": {
"label": "WinRT Geolocation API",
"condition": "tests.winrt_geolocation",
"output": [ "privateFeature" ]
}
},
"report": [
],
"summary": [
{
"section": "Qt Positioning",
"entries": [
"gypsy",
"winrt_geolocation"
]
}
]
}
|