summaryrefslogtreecommitdiff
path: root/src/plugins/macros
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2012-02-09 14:30:09 +0100
committerhjk <qthjk@ovi.com>2012-02-20 19:18:18 +0100
commitff92cdec43e90129d4c230bab9e5e0fc0de1b6d7 (patch)
tree2fc5ff11681b160460696a2bfd3b2c6abaf80081 /src/plugins/macros
parent74da217204ff126f6d5e67311bc9845a1a459bc1 (diff)
downloadqt-creator-ff92cdec43e90129d4c230bab9e5e0fc0de1b6d7.tar.gz
add qbs files
Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38 Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/macros')
-rw-r--r--src/plugins/macros/macros.qbs62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/plugins/macros/macros.qbs b/src/plugins/macros/macros.qbs
new file mode 100644
index 0000000000..4a5d073439
--- /dev/null
+++ b/src/plugins/macros/macros.qbs
@@ -0,0 +1,62 @@
+import qbs.base 1.0
+
+import "../QtcPlugin.qbs" as QtcPlugin
+
+QtcPlugin {
+ name: "Macros"
+
+ Depends { name: "qt"; submodules: ['gui'] }
+ Depends { name: "utils" }
+ Depends { name: "extensionsystem" }
+ Depends { name: "aggregation" }
+ Depends { name: "Core" }
+ Depends { name: "Locator" }
+ Depends { name: "find" }
+ Depends { name: "TextEditor" }
+
+ Depends { name: "cpp" }
+ cpp.includePaths: [
+ "..",
+ "../../libs",
+ "../..",
+ buildDirectory
+ ]
+
+ files: [
+ "macrooptionswidget.ui",
+ "macros.qrc",
+ "savedialog.ui",
+ "actionmacrohandler.cpp",
+ "actionmacrohandler.h",
+ "findmacrohandler.cpp",
+ "findmacrohandler.h",
+ "imacrohandler.cpp",
+ "imacrohandler.h",
+ "macro.cpp",
+ "macro.h",
+ "macroevent.cpp",
+ "macroevent.h",
+ "macrolocatorfilter.cpp",
+ "macrolocatorfilter.h",
+ "macromanager.cpp",
+ "macromanager.h",
+ "macrooptionspage.cpp",
+ "macrooptionspage.h",
+ "macrooptionswidget.cpp",
+ "macrooptionswidget.h",
+ "macros_global.h",
+ "macrosconstants.h",
+ "macrosplugin.cpp",
+ "macrosplugin.h",
+ "macrotextfind.cpp",
+ "macrotextfind.h",
+ "savedialog.cpp",
+ "savedialog.h",
+ "texteditormacrohandler.cpp",
+ "texteditormacrohandler.h"
+ ]
+}
+
+
+
+