forked from lirios/fluid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluid.qbs
39 lines (27 loc) · 971 Bytes
/
fluid.qbs
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
import qbs 1.0
import qbs.Probes
Project {
name: "Fluid"
readonly property string version: "1.2.0"
readonly property var versionParts: version.split('.').map(function(part) { return parseInt(part); })
readonly property string minimumQtVersion: "5.10.0"
property bool useSystemQbsShared: false
property bool useStaticAnalyzer: false
property bool autotestEnabled: false
property stringList autotestArguments: []
property stringList autotestWrapper: []
property bool withDocumentation: true
property bool withDemo: true
property bool withQmlModules: true
property bool installIcons: true
property bool deploymentEnabled: false
minimumQbsVersion: "1.14.0"
qbsSearchPaths: useSystemQbsShared ? [] : ["qbs/shared"]
references: [
"doc/doc.qbs",
"src/imports/imports.qbs",
"src/demo/demo.qbs",
"src/deployment/deployment.qbs",
"tests/auto/auto.qbs",
]
}