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

import "../QtcPlugin.qbs" as QtcPlugin

QtcPlugin {
    name: "Welcome"

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

    Depends { name: "cpp" }
    cpp.includePaths: base.concat("../../shared/scriptwrapper")

    files: [
        "welcome_global.h",
        "welcomeplugin.cpp",
        "welcomeplugin.h",
    ]
}