summaryrefslogtreecommitdiff
path: root/src/plugins/welcome/welcome.qbs
blob: bb975867df0e66da33230a92a0adc0f4087e7a00 (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
26
27
28
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.defines: project.additionalCppDefines
    cpp.includePaths: [
        "..",
        "../../libs",
        "../../../src/shared/scriptwrapper",
        "../../Core/dynamiclibrary",
        buildDirectory
    ]

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