aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/fakevim/fakevim.qbs
blob: cab0f0bebee9dba5cb637bc8f7eab6ef0bccc004 (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
31
32
33
import qbs.base 1.0

import "../QtcPlugin.qbs" as QtcPlugin

QtcPlugin {
    name: "FakeVim"

    Depends { name: "aggregation" }     // ### should be injected by product dependency "Core"
    Depends { name: "extensionsystem" } // ### should be injected by product dependency "Core"
    Depends { name: "utils" }           // ### should be injected by product dependency "Core"
    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"
    ]
}