summaryrefslogtreecommitdiffstats
path: root/src/Authoring/configure.json
blob: 768fbdef0a4bbbec6586d1236588735efd4791be (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
{
    "module": "Authoring",
    "testDir": "../../config.tests",

    "libraries": {
        "fbx": {
            "label": "Autodesk FBX",
            "test": "fbx",
            "comment": "Specify FBX SDK location with FBXSDK env variable, if not in 3rdparty folder",
            "sources": [
                {
                    "type": "fbx",
                    "libs": "-lfbxsdk",
                    "compiler": "clang",
                    "condition": "config.osx"
                },
                {
                    "type": "fbx",
                    "libs": "-lfbxsdk",
                    "compiler": "gcc4",
                    "condition": "config.linux"
                },
                {
                    "comment": "This is custom library path/naming for old provisioning",
                    "type": "fbx",
                    "debuglibs": "-llibfbxsdk-mdd",
                    "releaselibs": "-llibfbxsdk-md",
                    "compiler": "vs2015",
                    "condition": "config.win32"
                },
                {
                    "type": "fbx",
                    "libs": "-llibfbxsdk-md",
                    "compiler": "vs2015",
                    "condition": "config.win32"
                }
            ]
        }
    },

    "features": {
        "qt3dstudio-fbx": {
            "label": "Autodesk FBX",
            "condition": "libs.fbx",
            "output": [
                "privateFeature",
                { "type": "define", "name": "QT_3DSTUDIO_FBX" }
            ]
        }
    },

    "summary": [
        {
            "section": "Qt 3D Studio dependencies",
            "entries": [
                "qt3dstudio-fbx"
            ]
        }
    ]
}