blob: 5ac7938928ee10671ba312f72bdc91f3b1854d25 (
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
|
import qbs.base 1.0
import QtcPlugin
QtcPlugin {
name: "FakeVim"
Depends { name: "Core" }
Depends { name: "TextEditor" }
Depends { name: "Qt.widgets" }
files: [
"fakevimactions.cpp",
"fakevimactions.h",
"fakevimhandler.cpp",
"fakevimhandler.h",
"fakevimoptions.ui",
"fakevimplugin.cpp",
"fakevimplugin.h",
]
Group {
name: "Tests"
condition: project.testsEnabled
files: ["fakevim_test.cpp"]
}
}
|