2012-02-09 14:30:09 +01:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "Macros"
|
|
|
|
|
|
2012-04-10 15:56:23 +02:00
|
|
|
Depends { name: "qt"; submodules: ['widgets'] }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "Locator" }
|
2012-02-27 21:09:42 +02:00
|
|
|
Depends { name: "Find" }
|
2012-02-09 14:30:09 +01:00
|
|
|
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"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|