summaryrefslogtreecommitdiff
path: root/src/plugins/fakevim/fakevim.qbs
blob: 4864bc0b5017f005f465295c64c974d5164ae07f (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
import qbs.base 1.0

import QtcPlugin

QtcPlugin {
    name: "FakeVim"

    Depends { name: "Core" }
    Depends { name: "TextEditor" }
    Depends { name: "Find" }
    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"]
    }
}