aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/updateinfo/updateinfo.qbs
blob: 2a875c4d7f42b75d2166f8e1bf022e2cd06077e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import qbs 1.0

QtcPlugin {
    name: "UpdateInfo"

    condition: false // Severely broken atm.

    Depends { name: "Qt"; submodules: ["widgets", "xml", "network"] }
    Depends { name: "Utils" }

    Depends { name: "Core" }

    property bool enable: false
    pluginJsonReplacements: ({"UPDATEINFO_EXPERIMENTAL_STR": (enable ? "false": "true")})

    files: [
        "updateinfoplugin.cpp",
        "updateinfoplugin.h",
        "settingspage.cpp",
        "settingspage.h",
        "settingspage.ui",
    ]
}