From 8917ca1cfb8a77a84fea06f6a9c00558f5a21e88 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sat, 3 Jun 2017 17:22:50 +0200 Subject: Adding plugin action to the menu bar --- src/plugins/tomleditor/tomleditor.qbs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/plugins/tomleditor/tomleditor.qbs (limited to 'src/plugins/tomleditor/tomleditor.qbs') diff --git a/src/plugins/tomleditor/tomleditor.qbs b/src/plugins/tomleditor/tomleditor.qbs new file mode 100644 index 0000000..9b577a7 --- /dev/null +++ b/src/plugins/tomleditor/tomleditor.qbs @@ -0,0 +1,26 @@ +import qbs 1.0 + +Project { + name: "tomleditor" + + DynamicLibrary { + id: tomleditor + name: "tomleditor" + Depends { name: "cpp" } + Depends { name: "Qt"; submodules: ["core", "widgets", "webengine", "webenginewidgets"] } + + cpp.includePaths: ["../.."] + files: [ + "tomleditorform.cpp", + "tomleditorform.h", + "tomleditorform.ui", + ] + + Group { + fileTagsFilter: product.type + qbs.install: true + qbs.installDir: "lib/smolbote/plugins" + } + + } // DynamicLibrary testPlugin +} -- cgit v1.2.1