forked from qt-creator/qt-creator
Change-Id: I6c5c839dc199379edaf4c43ae4d6a0ed6ebdf751 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
30 lines
602 B
QML
30 lines
602 B
QML
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",
|
|
]
|
|
}
|
|
}
|