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

QtcPlugin {
    name: "UpdateInfo"

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

    Depends { name: "Core" }

    property bool enable: false
    pluginjson.replacements: ({"UPDATEINFO_EXPERIMENTAL_STR": (enable ? "false": "true")})

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