aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/configure.json
blob: 7d67db8b2c75036851b3f77ae462cd18a55cf9f5 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
    "module": "qml",
    "depends": [
        "core-private",
        "network-private"
    ],

    "commandline": {
        "options": {
            "qml-network": "boolean",
            "qml-debug": "boolean"
        }
    },

    "features": {
        "qml-network": {
            "label": "QML network support",
            "purpose": "Provides network transparency.",
            "section": "QML",
            "condition": "features.network",
            "output": [ "publicFeature" ]
        },
        "qml-debug": {
            "label": "QML debugging and profiling support",
            "purpose": "Provides infrastructure and plugins for debugging and profiling.",
            "section": "QML",
            "output": [ "publicFeature" ]
        },
        "qml-profiler": {
            "label": "Command line QML Profiler",
            "purpose": "Supports retrieving QML tracing data from an application.",
            "section": "QML",
            "condition": [
                "features.commandlineparser",
                "features.localserver",
                "features.process",
                "features.qml-debug",
                "features.qml-network",
                "features.xmlstreamwriter"
            ],
            "output": [ "privateFeature" ]
        },
        "qml-devtools": {
            "label": "QML Development Tools",
            "purpose": "Provides the QmlDevtools library and various utilities.",
            "section": "QML",
            "output": [ "privateFeature" ]
        },
        "qml-sequence-object": {
            "label": "QML sequence object",
            "purpose": "Supports mapping sequence types into QML.",
            "section": "QML",
            "output": [ "privateFeature" ]
        },
        "qml-list-model": {
            "label": "QML list model",
            "purpose": "Provides the ListModel QML type.",
            "section": "QML",
            "output": [ "privateFeature" ]
        },
        "qml-xml-http-request": {
            "label": "QML XML http request",
            "purpose": "Provides support for sending XML http requests.",
            "section": "QML",
            "condition": [
                "features.xmlstreamreader",
                "features.qml-network"
            ],
            "output": [ "privateFeature" ]
        },
        "qml-locale": {
            "label": "QML Locale",
            "purpose": "Provides support for locales in QML.",
            "section": "QML",
            "output": [ "privateFeature" ]
        },
        "qml-animation": {
            "label": "QML Animations",
            "purpose": "Provides support for animations and timers in QML.",
            "section": "QML",
            "condition": "features.animation",
            "output": [ "privateFeature" ]
        },
        "qml-delegate-model": {
            "label": "QML delegate model",
            "purpose": "Provides the DelegateModel QML type.",
            "section": "QML",
            "output": [ "privateFeature" ]
        }
    },

    "summary": [
        {
            "section": "Qt QML",
            "entries": [
                "qml-network",
                "qml-debug",
                "qml-sequence-object",
                "qml-list-model",
                "qml-xml-http-request",
                "qml-locale",
                "qml-delegate-model"
            ]
        }
    ]
}