summaryrefslogtreecommitdiffstats
path: root/src/core/configure.json
blob: 86b31223f2fb76a33c2cef384d79eb893389474d (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
{
    "module": "3dcore",
    "testDir": "../../config.tests",

    "commandline": {
        "options": {
            "assimp": { "type": "enum", "values": [ "qt", "system" ] },
            "qt3d-profile-jobs": "boolean",
            "qt3d-profile-gl": "boolean"
        }
    },

    "libraries": {
        "assimp": {
            "label": "Assimp",
            "test": "assimp",
            "sources": [
                { "type": "pkgConfig", "args": "assimp > 3.3.1" },
                "-lassimp"
            ]
        }
    },

    "features": {
        "assimp": {
            "label": "Assimp",
            "output": [ "privateFeature", "feature" ]
        },
        "system-assimp": {
            "label": "System Assimp",
            "enable": "input.assimp == 'system'",
            "disable": "input.assimp == 'qt'",
            "condition": "features.assimp && libs.assimp",
            "output": [ "privateFeature" ]
        },
        "qt3d-profile-jobs": {
            "label": "Output Qt3D Job traces",
            "autoDetect": false,
            "output": [
                "privateFeature",
                { "type": "define", "name": "QT3D_JOBS_RUN_STATS", "value": 1 }
            ]
        },
        "qt3d-profile-gl": {
            "label": "Output Qt3D GL traces",
            "autoDetect": false,
            "output": [
                "privateFeature",
                { "type": "define", "name": "QT3D_OPENGL_RUN_STATS", "value": 1 }
            ]
        }
    },

    "report": [
    ],

    "summary": [
        {
            "section": "Qt 3D",
            "entries": [
                "assimp",
                "system-assimp",
                "qt3d-profile-jobs",
                "qt3d-profile-gl"
            ]
        }
    ]
}