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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
import qbs 1.0
QtcPlugin {
name: "CodePaster"
Depends { name: "Qt"; submodules: ["widgets", "network"] }
Depends { name: "Utils" }
Depends { name: "Core" }
Depends { name: "TextEditor" }
cpp.includePaths: base.concat([project.sharedSourcesDir + "/cpaster"])
cpp.defines: ["CPASTER_PLUGIN_GUI"]
files: [
"columnindicatortextedit.cpp",
"columnindicatortextedit.h",
"cpasterconstants.h",
"cpaster.qrc",
"cpasterplugin.cpp",
"cpastertr.h",
"dpastedotcomprotocol.cpp",
"dpastedotcomprotocol.h",
"fileshareprotocol.cpp",
"fileshareprotocol.h",
"fileshareprotocolsettingspage.cpp",
"fileshareprotocolsettingspage.h",
"pastebindotcomprotocol.cpp",
"pastebindotcomprotocol.h",
"pasteselectdialog.cpp",
"pasteselectdialog.h",
"pasteview.cpp",
"pasteview.h",
"protocol.cpp",
"protocol.h",
"settings.cpp",
"settings.h",
"urlopenprotocol.cpp",
"urlopenprotocol.h",
]
Group {
name: "Shared"
prefix: "../../shared/cpaster/"
files: [
"cgi.cpp",
"cgi.h",
"splitter.cpp",
"splitter.h",
]
}
}
|