blob: 9b577a72110be9c47b6b90837756894b0b177249 (
plain)
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
|
import qbs 1.0
Project {
name: "tomleditor"
DynamicLibrary {
id: tomleditor
name: "tomleditor"
Depends { name: "cpp" }
Depends { name: "Qt"; submodules: ["core", "widgets", "webengine", "webenginewidgets"] }
cpp.includePaths: ["../.."]
files: [
"tomleditorform.cpp",
"tomleditorform.h",
"tomleditorform.ui",
]
Group {
fileTagsFilter: product.type
qbs.install: true
qbs.installDir: "lib/smolbote/plugins"
}
} // DynamicLibrary testPlugin
}
|