blob: dec820c754a55e64c2a29c018bf411ec2824853d (
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
27
28
29
30
|
import qbs.base 1.0
import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "FakeVim"
Depends { name: "Core" }
Depends { name: "TextEditor" }
Depends { name: "Find" }
Depends { name: "cpp" }
Depends { name: "qt"; submodules: ['gui'] }
cpp.includePaths: [
"..",
"../../libs",
buildDirectory
]
files: [
"fakevimactions.cpp",
"fakevimhandler.cpp",
"fakevimplugin.cpp",
"fakevimactions.h",
"fakevimhandler.h",
"fakevimplugin.h",
"fakevimoptions.ui"
]
}
|