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 }