forked from qtrest/qtrest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcom_github_kafeg_qtrest.qbs
40 lines (39 loc) · 1.22 KB
/
com_github_kafeg_qtrest.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
import qbs
StaticLibrary {
name: "qtrest"
Depends { name: 'cpp' }
Depends { name: "Qt.network" }
Depends { name: "Qt.qml" }
files: [
"src/apibase.h",
"src/models/baserestlistmodel.h",
"src/models/detailsmodel.h",
"src/models/restitem.h",
"src/usingleton.h",
"src/models/pagination.h",
"src/models/abstractjsonrestlistmodel.h",
"src/models/abstractxmlrestlistmodel.h",
"src/models/jsonrestlistmodel.h",
"src/models/requests.h",
"src/models/xmlrestlistmodel.h",
"src/apibase.cpp",
"src/models/baserestlistmodel.cpp",
"src/models/detailsmodel.cpp",
"src/models/restitem.cpp",
"src/models/pagination.cpp",
"src/models/abstractjsonrestlistmodel.cpp",
"src/models/abstractxmlrestlistmodel.cpp",
"src/models/jsonrestlistmodel.cpp",
"src/models/requests.cpp",
"src/models/xmlrestlistmodel.cpp",
"com_github_kafeg_qtrest.qrc",
"README.md",
"LICENSE",
"docs/QtMicroRestFramework.qmodel"
]
cpp.includePaths: ["src", "src/models"]
Export {
Depends { name: "cpp" }
cpp.includePaths: ["src", "src/models"]
}
}