forked from google/breakpad
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbreakpad.qbs
52 lines (44 loc) · 1.17 KB
/
breakpad.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
40
41
42
43
44
45
46
47
48
49
50
51
52
import qbs
import qbs.FileInfo
Project {
name: "breakpad"
property string version: "0.1"
minimumQbsVersion: "1.6"
qbsSearchPaths: "src/build"
property stringList commonIncludePaths: [sourceDirectory + "/src"]
property stringList commonDefines: []
references: [
"src/client/client.qbs",
"src/common/common.qbs",
"src/processor/processor.qbs",
"src/third_party/libdisasm/libdisasm.qbs",
"src/tools/tools.qbs",
]
Product {
name: "docs"
Group {
name: "docs"
files: [
"AUTHORS",
"ChangeLog",
"INSTALL",
"LICENSE",
"NEWS",
"README.md",
]
qbs.install: true
qbs.installDir: "share/doc/"+project.name+"-"+project.version
}
}
Product {
name: "breakpad_headers"
Group {
name: "breakpad_headers_common"
files: [
"src/google_breakpad/common/*.h",
]
qbs.install: true
qbs.installDir: "include/breakpad/google_breakpad/common"
}
}
}