summaryrefslogtreecommitdiff
path: root/src/plugins/helloworld/helloworld.qbs
blob: d1beb7d1a2169f30eefa5055b162707c9c0b3953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import qbs.base 1.0

import "../QtcPlugin.qbs" as QtcPlugin

QtcPlugin {
    name: "HelloWorld"

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

    cpp.includePaths: [
        "..",
        "../../libs",
        buildDirectory
    ]

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