aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/helloworld/helloworld.qbs
blob: 65fc74e3b3e2898a6b90ee1c0efc920863347ab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import qbs 1.0

QtcPlugin {
    name: "HelloWorld"

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

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