summaryrefslogtreecommitdiff
path: root/src/plugins/tasklist/tasklist.qbs
blob: 9a92e0493e39a6204b9743e0ef5d6478980bf9c3 (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
29
30
import qbs.base 1.0

import "../QtcPlugin.qbs" as QtcPlugin

QtcPlugin {
    name: "TaskList"

    Depends { name: "Qt.widgets" }
    Depends { name: "Core" }
    Depends { name: "ProjectExplorer" }
    Depends { name: "Find" }
    Depends { name: "Locator" }
    Depends { name: "TextEditor" }

    files: [
        "TaskList.mimetypes.xml",
        "stopmonitoringhandler.cpp",
        "stopmonitoringhandler.h",
        "taskfile.cpp",
        "taskfile.h",
        "taskfilefactory.cpp",
        "taskfilefactory.h",
        "tasklist.qrc",
        "tasklist_export.h",
        "tasklistconstants.h",
        "tasklistplugin.cpp",
        "tasklistplugin.h",
    ]
}