-
Notifications
You must be signed in to change notification settings - Fork 2
/
Pressure.qbs
45 lines (39 loc) · 1.2 KB
/
Pressure.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
import qbs
Project {
Application {
name: "Pressure"
qbsSearchPaths: "qbsmodules"
Depends { name: "Qt"; submodules: ["quick", "network", "websockets"] }
Depends { name: "cpp" }
Depends { name: "steem" }
Depends { name: "libqtqmltricks-qtqmlmodels" }
cpp.cxxLanguageVersion: "c++14"
cpp.includePaths: "vendor/QuickPromise"
cpp.rpaths: qbs.hostOS.contains("osx")? ["@executable_path/../Frameworks"] : []
files: [
"AccountKeys.cpp",
"AccountKeys.hpp",
"KeyPair.cpp",
"KeyPair.hpp",
"KeyStore.cpp",
"KeyStore.hpp",
"Promise.cpp",
"Promise.hpp",
"QmlJsonRpcProvider.cpp",
"QmlJsonRpcProvider.hpp",
"TransactionFoundry.cpp",
"TransactionFoundry.hpp",
"main.cpp",
"qml.qrc",
"vendor/QuickPromise/qptimer.h",
"vendor/QuickPromise/qptimer.cpp",
"vendor/QuickPromise/quickpromise.qrc",
]
}
SubProject {
filePath: "vendor/QtQmlModels/QtQmlModels.qbs"
Properties {
name: "QtQmlModels"
}
}
}