forked from qt-creator/qt-creator
Most information is available via Q(Core|Gui)Application. Add an AppInfo structure for the things that are not. This avoids that the information ends up duplicated and hardcoded in the plugins, which is not needed or desired. Change-Id: I4d565e75c42a7b8facafa90c27096ea49359215d Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
43 lines
999 B
QML
43 lines
999 B
QML
import qbs 1.0
|
|
|
|
QtcPlugin {
|
|
name: "Macros"
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "Aggregation" }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
|
|
files: [
|
|
"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",
|
|
"macros.qrc",
|
|
"macrosconstants.h",
|
|
"macrosplugin.cpp",
|
|
"macrosplugin.h",
|
|
"macrostr.h",
|
|
"macrotextfind.cpp",
|
|
"macrotextfind.h",
|
|
"savedialog.cpp",
|
|
"savedialog.h",
|
|
"texteditormacrohandler.cpp",
|
|
"texteditormacrohandler.h",
|
|
]
|
|
}
|