diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2012-02-09 14:30:09 +0100 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-02-20 19:18:18 +0100 |
commit | ff92cdec43e90129d4c230bab9e5e0fc0de1b6d7 (patch) | |
tree | 2fc5ff11681b160460696a2bfd3b2c6abaf80081 /src/plugins/resourceeditor | |
parent | 74da217204ff126f6d5e67311bc9845a1a459bc1 (diff) | |
download | qt-creator-ff92cdec43e90129d4c230bab9e5e0fc0de1b6d7.tar.gz |
add qbs files
Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/resourceeditor')
-rw-r--r-- | src/plugins/resourceeditor/resourceeditor.qbs | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/plugins/resourceeditor/resourceeditor.qbs b/src/plugins/resourceeditor/resourceeditor.qbs new file mode 100644 index 0000000000..a11a6367dd --- /dev/null +++ b/src/plugins/resourceeditor/resourceeditor.qbs @@ -0,0 +1,47 @@ +import qbs.base 1.0 + +import "../QtcPlugin.qbs" as QtcPlugin + +QtcPlugin { + name: "ResourceEditor" + + Depends { name: "aggregation" } // ### should be injected by product dependency "Core" + Depends { name: "extensionsystem" } // ### should be injected by product dependency "Core" + Depends { name: "utils" } // ### should be injected by product dependency "Core" + Depends { name: "Core" } + Depends { name: "cpp" } + Depends { name: "qt"; submodules: ['gui', 'xml'] } + + cpp.includePaths: [ + "..", + "../..", + "../../libs", + buildDirectory, + "../../shared/qrceditor", + "../../tools/utils" + ] + + files: [ + "ResourceEditor.mimetypes.xml", + "resourceeditor.qrc", + "resourceeditorconstants.h", + "resourceeditorfactory.cpp", + "resourceeditorfactory.h", + "resourceeditorplugin.cpp", + "resourceeditorplugin.h", + "resourceeditorw.cpp", + "resourceeditorw.h", + "resourcewizard.cpp", + "resourcewizard.h", + "../../shared/qrceditor/resourcefile.cpp", + "../../shared/qrceditor/resourceview.cpp", + "../../shared/qrceditor/qrceditor.cpp", + "../../shared/qrceditor/undocommands.cpp", + "../../shared/qrceditor/resourcefile_p.h", + "../../shared/qrceditor/resourceview.h", + "../../shared/qrceditor/qrceditor.h", + "../../shared/qrceditor/undocommands_p.h", + "../../shared/qrceditor/qrceditor.ui" + ] +} + |