-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
liri-music.qbs
35 lines (28 loc) · 914 Bytes
/
liri-music.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
import qbs 1.0
Project {
// Project name
name: "Music"
// Your sub-projects go here
references: [
"src/src.qbs"
]
property bool withFluid: qbs.targetOS.contains("windows") ||
qbs.targetOS.contains("macos") ||
qbs.targetOS.contains("android")
// Add Fluid search paths here
qbsSearchPaths: ["fluid/qbs/shared", "fluid/qbs/local"]
// Minimum Qbs version required (don't go below 1.6)
minimumQbsVersion: "1.6"
// Include Fluid project
SubProject {
filePath: "fluid/fluid.qbs"
Properties {
condition: withFluid
useSystemQbsShared: false
autotestEnabled: false
deploymentEnabled: false
withDocumentation: false
withDemo: false
}
}
}