aboutsummaryrefslogtreecommitdiff
path: root/smolbote.qbs
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-06-03 17:22:50 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2017-06-03 17:22:50 +0200
commit8917ca1cfb8a77a84fea06f6a9c00558f5a21e88 (patch)
tree2e03ed197f38e93764a3926776888636b22e8e21 /smolbote.qbs
parentTest plugin loading (diff)
downloadsmolbote-8917ca1cfb8a77a84fea06f6a9c00558f5a21e88.tar.xz
Adding plugin action to the menu bar
Diffstat (limited to 'smolbote.qbs')
-rw-r--r--smolbote.qbs22
1 files changed, 3 insertions, 19 deletions
diff --git a/smolbote.qbs b/smolbote.qbs
index 0ae87d5..60bd062 100644
--- a/smolbote.qbs
+++ b/smolbote.qbs
@@ -183,23 +183,7 @@ Project {
}
} // CppApplication poi
- DynamicLibrary {
- id: testPlugin
- name: "testPlugin"
- Depends { name: "cpp" }
- Depends { name: "Qt"; submodules: ["core", "widgets", "webengine", "webenginewidgets"] }
-
- files: [
- "src/interfaces.h",
- "src/testplugin.cpp",
- "src/testplugin.h",
- ]
-
- Group {
- fileTagsFilter: product.type
- qbs.install: true
- qbs.installDir: "lib/smolbote/plugins"
- }
-
- } // DynamicLibrary testPlugin
+ SubProject {
+ filePath: "src/plugins/plugins.qbs"
+ }
}