aboutsummaryrefslogtreecommitdiff
path: root/smolbote.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'smolbote.qbs')
-rw-r--r--smolbote.qbs23
1 files changed, 22 insertions, 1 deletions
diff --git a/smolbote.qbs b/smolbote.qbs
index 573706c..0ae87d5 100644
--- a/smolbote.qbs
+++ b/smolbote.qbs
@@ -58,6 +58,7 @@ Project {
files: [
"src/browser.cpp",
"src/browser.h",
+ "src/interfaces.h",
"src/main.cpp",
]
cpp.defines: {
@@ -180,5 +181,25 @@ Project {
qbs.install: true
qbs.installDir: "share/smolbote"
}
- }
+ } // 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
}