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
|
import qbs.base 1.0
import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "ResourceEditor"
Depends { name: "Core" }
Depends { name: "Find" }
Depends { name: "cpp" }
Depends { name: "Qt"; submodules: ["widgets", "xml"] }
cpp.includePaths: base.concat("qrceditor")
files: [
"ResourceEditor.mimetypes.xml",
"resourceeditor.qrc",
"resourceeditorconstants.h",
"resourceeditorfactory.cpp",
"resourceeditorfactory.h",
"resourceeditorplugin.cpp",
"resourceeditorplugin.h",
"resourceeditorw.cpp",
"resourceeditorw.h",
"resourcewizard.cpp",
"resourcewizard.h",
"qrceditor/qrceditor.cpp",
"qrceditor/qrceditor.h",
"qrceditor/qrceditor.ui",
"qrceditor/resourcefile.cpp",
"qrceditor/resourcefile_p.h",
"qrceditor/resourceview.cpp",
"qrceditor/resourceview.h",
"qrceditor/undocommands.cpp",
"qrceditor/undocommands_p.h",
]
}
|