aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/resourceeditor/resourceeditor.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-07-30 18:00:27 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2013-08-21 17:30:36 +0200
commit0dab64b6cfb6944bd2df0e73d3738da06c4c4028 (patch)
tree90b9a78eb958cf391d5335601bfca25e8ea10145 /src/plugins/resourceeditor/resourceeditor.qbs
parent417b80c5449effcf92154fd55a86b427736e61a1 (diff)
Qbs project files: Use groups wherever applicable.
Provides better structuring of source files. Change-Id: Ic2d0094312bb7c8da01a1f38270564407fdbefce Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/plugins/resourceeditor/resourceeditor.qbs')
-rw-r--r--src/plugins/resourceeditor/resourceeditor.qbs46
1 files changed, 24 insertions, 22 deletions
diff --git a/src/plugins/resourceeditor/resourceeditor.qbs b/src/plugins/resourceeditor/resourceeditor.qbs
index 35bf10acfb..d433d883b1 100644
--- a/src/plugins/resourceeditor/resourceeditor.qbs
+++ b/src/plugins/resourceeditor/resourceeditor.qbs
@@ -9,27 +9,29 @@ QtcPlugin {
Depends { name: "Find" }
Depends { name: "Qt"; submodules: ["widgets", "xml"] }
- cpp.includePaths: base.concat("qrceditor")
+ cpp.includePaths: base.concat(qrcEdtitor.prefix)
- files: [
- "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",
- ]
+ Group {
+ name: "General"
+ files: [
+ "resourceeditor.qrc",
+ "resourceeditorconstants.h",
+ "resourceeditorfactory.cpp", "resourceeditorfactory.h",
+ "resourceeditorplugin.cpp", "resourceeditorplugin.h",
+ "resourceeditorw.cpp", "resourceeditorw.h",
+ "resourcewizard.cpp", "resourcewizard.h",
+ ]
+ }
+
+ Group {
+ name: "QRC Editor"
+ id: qrcEdtitor
+ prefix: "qrceditor/"
+ files: [
+ "qrceditor.cpp", "qrceditor.h", "qrceditor.ui",
+ "resourcefile.cpp", "resourcefile_p.h",
+ "resourceview.cpp", "resourceview.h",
+ "undocommands.cpp", "undocommands_p.h",
+ ]
+ }
}