aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/fakevim/fakevim.qbs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2012-02-09 14:30:09 +0100
committerhjk <qthjk@ovi.com>2012-02-20 19:18:18 +0100
commitff92cdec43e90129d4c230bab9e5e0fc0de1b6d7 (patch)
tree2fc5ff11681b160460696a2bfd3b2c6abaf80081 /src/plugins/fakevim/fakevim.qbs
parent74da217204ff126f6d5e67311bc9845a1a459bc1 (diff)
add qbs files
Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38 Reviewed-by: hjk <qthjk@ovi.com>
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 0000000000..cab0f0bebe
--- /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"
+ ]
+}
+