summaryrefslogtreecommitdiff
path: root/src/plugins/helloworld/helloworld.qbs
blob: e5546e282aa1c31b7ebf2fde6ff682c2b537f581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import qbs.base 1.0

import "../QtcPlugin.qbs" as QtcPlugin

QtcPlugin {
    name: "HelloWorld"

    Depends { name: "Core" }
    Depends { name: "Qt"; submodules: ["widgets", "xml", "network", "script"] }

    files: [
        "helloworldplugin.cpp",
        "helloworldplugin.h",
        "helloworldwindow.cpp",
        "helloworldwindow.h",
    ]
}