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

    "libraries": {
        "open62541": {
            "label": "Open62541",
            "test": "open62541",
            "sources": [
                {
                    "libs": "-lopen62541",
                    "condition": "!config.win32"
                },
                {
                    "libs": "-lopen62541 -lws2_32",
                    "condition": "config.win32"
                },
                {
                    "type": "pkgConfig",
                    "args": "open62541"
                }
            ]
        },
        "uacpp": {
            "label": "Unified Automation C++ SDK",
            "test": "uacpp",
            "sources": [
                {
                    "type": "uacpp",
                    "builds": {
                        "debug": "-luaclientd -luabased -lcoremoduled -luastackd -luapkid -lxmlparserd",
                        "release": "-luaclient -luabase -lcoremodule -luastack -luapki -lxmlparser"
                    },
                    "libs": "-lCrypt32 -lOle32 -lOleAut32 -lws2_32 -llibeay32 -llibxml2",
                    "condition": "config.win32 && var.QT_EDITION != 'OpenSource'"
                },
                {
                    "type": "uacpp",
                    "libs": "-luaclient -luamodule -luamodels -lcoremodule -luabase -luastack -lxmlparser -luapki -lcrypto -lssl -lxml2",
                    "condition": "!config.win32 && var.QT_EDITION != 'OpenSource'"
                }
            ]
        }
    },

    "features": {
        "open62541": {
            "label": "Open62541",
            "condition": "libs.open62541",
            "output": [ "privateFeature" ]
        },
        "uacpp": {
            "label": "Unified Automation C++ SDK",
            "condition": "libs.uacpp",
            "output": [ "privateFeature" ]
        },
        "ns0idnames": {
            "label": "Support for namespace 0 NodeId names",
            "purpose": "Provides names for the QOpcUa::NodeIds::Namespace0 enum.",
            "output": [ "privateFeature" ]
        },
        "ns0idgenerator": {
            "label": "Namespace 0 NodeIds generator",
            "purpose": "Build a generator for updating the QOpcUa::NodeIds::Namespace0 enum from the NodeIds.csv file.",
            "autoDetect": "false",
            "output": [ "privateFeature" ]
        }
    },

    "summary": [
        {
            "section": "Qt Opcua",
            "entries": [ "open62541", "uacpp", "ns0idnames", "ns0idgenerator" ]
        }
    ]
}