aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/fakevim/fakevim.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fakevim/fakevim.qbs')
-rw-r--r--src/plugins/fakevim/fakevim.qbs33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/plugins/fakevim/fakevim.qbs b/src/plugins/fakevim/fakevim.qbs
new file mode 100644
index 00000000000..cab0f0bebee
--- /dev/null
+++ b/src/plugins/fakevim/fakevim.qbs
@@ -0,0 +1,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"
+ ]
+}
+