blob: 051f1a04fc6827790d9d03b52671770951afaaaf (
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.FileInfo
QtcManualTest {
name: "Manual FakeVim test"
type: ["application"]
Depends { name: "Utils" }
property string fakeVimDir: FileInfo.joinPaths(project.ide_source_tree, "src", "plugins", "fakevim")
cpp.defines: base.concat(["FAKEVIM_STANDALONE"])
cpp.includePaths: fakeVimDir
files: "main.cpp"
Group {
name: "FakeVim files"
prefix: fakeVimDir + "/"
files: [
"fakevimactions.cpp",
"fakevimactions.h",
"fakevimhandler.cpp",
"fakevimhandler.h",
]
}
}
|