aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/helloworld/helloworld.qbs
blob: 211f29c7d618fc3ac1adadc494f4d08ea58eeb88 (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"] }

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