summaryrefslogtreecommitdiff
path: root/src/plugins/cpaster/frontend/frontend.qbs
blob: 4c7b25f3ab48de18c10b33912bf8ccfc62e585a9 (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 "../../../tools/QtcTool.qbs" as QtcTool

QtcTool {
    name: "cpaster"

    Depends { name: "cpp" }
    Depends {
        name: "Qt"
        submodules: "core", "gui", "network"
    }
    Depends { name: "Core" }

    cpp.includePaths: ["../../"]
    cpp.rpaths: [
        "$ORIGIN/../lib/qtcreator",
        "$ORIGIN/../lib/qtcreator/plugins",
        "$ORIGIN/../lib/qtcreator/plugins/Nokia"
    ]

    files: [ "main.cpp",
        "argumentscollector.h", "argumentscollector.cpp",
        "../cpasterconstants.h",
        "../kdepasteprotocol.h", "../kdepasteprotocol.cpp",
        "../pastebindotcaprotocol.h", "../pastebindotcaprotocol.cpp",
        "../pastebindotcomprotocol.h", "../pastebindotcomprotocol.cpp",
        "../protocol.h", "../protocol.cpp",
        "../urlopenprotocol.h", "../urlopenprotocol.cpp",
    ]
}