blob: 5253039dbc9625a96b1130c63cfce3a8179c6860 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import qbs 1.0
QtcPlugin {
name: "UpdateInfo"
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",
]
}
|